rename get/set internal

to _word , because _byte versions are coming
This commit is contained in:
Torsten Ruger
2015-11-18 15:36:43 +02:00
parent 633c1e9a4a
commit 5369dc3d52
13 changed files with 52 additions and 52 deletions

View File

@ -48,7 +48,7 @@ class TestList < MiniTest::Test
@list.push :one
assert_equal 1 , @list.get_length
assert_equal 1 , @list.indexed_length
assert_equal 1 , @list.get_internal(Parfait::LAYOUT_INDEX + 1)
assert_equal 1 , @list.get_internal_word(Parfait::LAYOUT_INDEX + 1)
end
def test_list_inspect
@list.set(1,1)
@ -71,7 +71,7 @@ class TestList < MiniTest::Test
end
def test_one_set1
assert_equal 2 , @list.set(1,2)
assert_equal 1 , @list.get_internal(2)
assert_equal 1 , @list.get_internal_word(2)
end
def test_set1_len
@list.set(1,1)