Skip to content

Instantly share code, notes, and snippets.

@thomasfl
Created August 19, 2012 14:32
Show Gist options
  • Select an option

  • Save thomasfl/3395110 to your computer and use it in GitHub Desktop.

Select an option

Save thomasfl/3395110 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'minitest/autorun'
class RomanNumerals
def conv(str)
1
end
end
class RomanNumeralsTest < MiniTest::Unit::TestCase
def test
assert RomanNumerals.new.conv("I") == 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment