test/test_checkm.rb in checkm-0.0.1 vs test/test_checkm.rb in checkm-0.0.2
- old
+ new
@@ -3,9 +3,10 @@
class TestCheckm < Test::Unit::TestCase
def test_empty
checkm = ''
res = Checkm::Manifest.parse(checkm)
assert_equal(res.entries.empty?, true)
+ assert_equal(res.valid?, true)
end
def test_comment
checkm = '#'
res = Checkm::Manifest.parse(checkm)