mirror of
https://github.com/edgecase/ruby_koans.git
synced 2026-04-15 07:23:19 -04:00
12 lines
156 B
Ruby
12 lines
156 B
Ruby
require 'test/unit'
|
|
|
|
class TestSomething < Test::Unit::TestCase
|
|
def test_assert
|
|
assert true
|
|
assert_equal 1, 1
|
|
assert_equal 1, 1.0
|
|
end
|
|
end
|
|
|
|
|