Skip to content

Instantly share code, notes, and snippets.

@kimihito
Last active February 21, 2018 11:01
Show Gist options
  • Save kimihito/61bae0b9992e3c89e0c3873b7128f9ca to your computer and use it in GitHub Desktop.
Save kimihito/61bae0b9992e3c89e0c3873b7128f9ca to your computer and use it in GitHub Desktop.
Okinawarb Mob Programming Practice
require 'test/unit'
class Sample
def self.convert(str)
1 if str == '一'
end
end
class TestSample < Test::Unit::TestCase
def test_one
assert_equal 1, Sample.convert('一')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment