When I try to do rspec rspec_001.rb
I get the above error
How can I get around the error and run tests?
contents of rspec_001.rb
:
require 'rspec'
class Dummy < Object
end
describe "a test" do
end
I can't seem to use bundle exec rspec rspec_001.rb
as this is not a Rails project with a Gemfile.