bit more cleaning of testing

This commit is contained in:
Torsten Ruger
2015-10-16 18:34:54 +03:00
parent aaaef6e3d7
commit dc3920580b
6 changed files with 10 additions and 13 deletions

View File

@ -36,8 +36,8 @@ class TestDictionary < MiniTest::Test
shouldda.each do |k,v|
@lookup.set(k,v)
end
shouldda.each do |k,v|
assert_equal v , @lookup.get(k)
@lookup.each do |k,v|
assert_equal v , shouldda[k]
end
end
end