each word for binary

This commit is contained in:
Torsten Ruger
2018-03-29 17:38:59 +03:00
parent 7cf253ad9c
commit 00be522419
3 changed files with 21 additions and 0 deletions

View File

@ -69,5 +69,10 @@ module Parfait
assert @code.next
assert_nil @code.next.next
end
def test_each
len = 0
@code.each_word{ len += 1}
assert_equal 14 , len
end
end
end