Skip to content

Instantly share code, notes, and snippets.

@sskirby
Last active December 18, 2015 04:39
Show Gist options
  • Save sskirby/5726904 to your computer and use it in GitHub Desktop.
Save sskirby/5726904 to your computer and use it in GitHub Desktop.
testing outbound query methods - original
class GearTest < MiniTest::Unit:TestCase
def test_calculates_gear_inches
gear = Gear.new(
chainring: 52,
cog: 11,
wheel: Wheel.new(26, 1.5))
assert_in_delta(137.1,
gear.gear_inches,
0.01)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment