Skip to content

Instantly share code, notes, and snippets.

@kano4
Created October 16, 2011 12:04
Show Gist options
  • Save kano4/1290805 to your computer and use it in GitHub Desktop.
Save kano4/1290805 to your computer and use it in GitHub Desktop.
FibBuzz in RSpec
require './fibbuzz'
describe 'fibbuzz' do
before do
@expected = ['Fib', 'Fib', 'Fib', 4, 'FibBuzz', 6, 7, 'Fib', 9, 'Buzz', 11, 12, 'Fib', 14, 'Buzz', 16]
end
subject {fibbuzz(16)}
it {should eql @expected}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment