store method, not name, in message

changes the calling and thus too many test
This commit is contained in:
Torsten Ruger
2018-07-22 22:29:32 +03:00
parent b6c85cd4a4
commit d80ef4bf4e
41 changed files with 384 additions and 398 deletions

View File

@ -16,7 +16,7 @@ module Parfait
def test_message_name_nil
last = @type.names.last
assert_equal :arguments , last , @type.names.inspect
assert_nil @mess.name
assert_nil @mess.method
end
def test_message_next_set
@mess.next_message = :next_message

View File

@ -35,8 +35,8 @@ module Parfait
def test_caller
assert_nil @mess.caller
end
def test_name
assert_nil @mess.name
def test_method
assert_nil @mess.method
end
end
end