mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
78b10588bf
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
17 lines
396 B
Ruby
17 lines
396 B
Ruby
require "test/unit"
|
|
require "coverage"
|
|
|
|
class TestCoverage < Test::Unit::TestCase
|
|
def test_result_without_start
|
|
assert_raise(RuntimeError) {Coverage.result}
|
|
end
|
|
def test_result_with_nothing
|
|
Coverage.start
|
|
result = Coverage.result
|
|
assert_kind_of(Hash, result)
|
|
result.each do |key, val|
|
|
assert_kind_of(String, key)
|
|
assert_kind_of(Array, val)
|
|
end
|
|
end
|
|
end
|