Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私がやろうとするとrspec rspec_001.rb、上記のエラーが発生します
rspec rspec_001.rb
エラーを回避してテストを実行するにはどうすればよいですか?
の内容rspec_001.rb:
rspec_001.rb
require 'rspec' class Dummy < Object end describe "a test" do end
bundle exec rspec rspec_001.rb これはGemfileを使用したRailsプロジェクトではないため、使用できないようです。
bundle exec rspec rspec_001.rb
gem update rspecこれを修正し、仕様が実行されるようになりました (「サンプルが見つかりません」は問題ありません。何もありません) -
gem update rspec
rspec rspec_001.rb No examples found. Finished in 0.00011 seconds 0 examples, 0 failures