Skip to content

Instantly share code, notes, and snippets.

@havenwood
Last active March 2, 2019 02:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save havenwood/8628f94348f15433336f021d309da39b to your computer and use it in GitHub Desktop.
Save havenwood/8628f94348f15433336f021d309da39b to your computer and use it in GitHub Desktop.
๐ŸŽฉ๐Ÿ˜ธ
require 'minitest/autorun'
describe 'mad_hatter' do
let :golden_ratio do
Math.sqrt(5).+(1).fdiv(2)
end
it 'is golden' do
assert_equal golden_ratio ** 2, golden_ratio + 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment