Last active
December 28, 2015 14:48
-
-
Save atkolkma/7516896 to your computer and use it in GitHub Desktop.
rspec test for output of fizzbuzz()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "~/development/tested/lib/fizzbuzz.rb" | |
describe FizzBuzz do | |
describe '#fizzbuzzer' do | |
it "accurately outputs for various integers" do | |
expect(fizzbuzzer(9)).to eql("Fizz") | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment