mam badanej jednostki (przykładem jest modyfikowana Test::Unit documentation)Jak nazwy jednostki rubinowym wyjście testuje
require 'test/unit'
class TC_MyTest < Test::Unit::TestCase
def test_something
assert(true)
end
end
Kiedy go wykonać, otrzymuję:
Loaded suite C:/test
Started
.
Finished in 0.0 seconds.
1 tests, 1 assertions, 0 failures, 0 errors
chciałbym dostać coś tak (test_something
jest wyprowadzany): Test jednostki
Loaded suite C:/test
Started
test_something
.
Finished in 0.0 seconds.
1 tests, 1 assertions, 0 failures, 0 errors
Nie potrzebujesz = verbose po --verbose, lub v po -v ... po prostu działa z -v lub --verbose zrobi lewy. –