there is some info. about how rspec still gives a no method error and that you can fix this by putting:
require_relative '../fizzbuzz.rb'
On my machine, though, it seems that RSpec was able to find fizzbuzz.rb and gave me the ArgumentError even before adding the require_relative line to fizzbuzz_spec.rb
In the lesson, after defining fizzbuzz with:
def fizzbuzz end
there is some info. about how rspec still gives a no method error and that you can fix this by putting: require_relative '../fizzbuzz.rb'
On my machine, though, it seems that RSpec was able to find fizzbuzz.rb and gave me the ArgumentError even before adding the require_relative line to fizzbuzz_spec.rb
I'm on a mac and rspec -v gives me 3.4.2
Thanks, Michael