Skip to content

Instantly share code, notes, and snippets.

@tiagodavi
Last active August 29, 2015 14:18
Show Gist options
  • Save tiagodavi/ff05011288b374e887eb to your computer and use it in GitHub Desktop.
Save tiagodavi/ff05011288b374e887eb to your computer and use it in GitHub Desktop.
BDD with Happy Numbers
describe HappyNumber do
it "Is possible to chek if a number is happy?" do
happy_number = HappyNumber.new
expect(happy_number.happy?(7)).to be true
end
end
#happy_number.rb
class HappyNumber
def happy?(number)
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment