learn-co-curriculum / rspec-fizzbuzz

Fizzbuzz with RSpec Tutorial
Other
1 stars 157 forks source link

Typo for loading fizzbuzz to test #69

Closed Mike-Xie closed 8 years ago

Mike-Xie commented 8 years ago

Let's add that requirement, the loading of our actual program, to our test, so that when our tests run, they can rely on our program. Edit: spec/fizzbuzz_spec.rb

require_relative './spec_helper.rb' require_relative '../fizzbuzz.rb'

There is an extra period in the require for ./fizzbuzz.rb

AnnJohn commented 8 years ago

thanks @Mike-Xie. We updated this and removed the extra period.