fixing tests for shifting constants into slots

This commit is contained in:
Torsten Ruger
2018-03-17 21:15:38 +05:30
parent 3fecdf54a5
commit cddc25a595
10 changed files with 14 additions and 13 deletions

View File

@ -18,8 +18,8 @@ module Vool
end
def test_receiver
type , value = receiver
assert_equal type, @ins.next.right.class
assert_equal value, @ins.next.right.value
assert_equal type, @ins.next.right.known_object.class
assert_equal value, @ins.next.right.known_object.value
end
def test_call_is
assert_equal Mom::SimpleCall, @ins.next(3).class