implement greater than

This commit is contained in:
Torsten Ruger
2018-04-19 22:57:31 +03:00
parent be3d125b82
commit 04359546b7
5 changed files with 38 additions and 16 deletions

View File

@ -29,10 +29,22 @@ module Risc
run_all "4 * 4"
assert_equal 16 , get_return.value
end
def test_smaller
def test_smaller_true
run_all "4 < 5"
assert_equal Parfait::TrueClass , get_return.class
end
def test_smaller_false
run_all "6 < 5"
assert_equal Parfait::FalseClass , get_return.class
end
def test_larger_true
run_all "5 > 4"
assert_equal Parfait::TrueClass , get_return.class
end
def test_larger_false
run_all "5 > 6"
assert_equal Parfait::FalseClass , get_return.class
end
end
end
end