|
|
|
|
|
by rhizome
4843 days ago
|
|
Hear hear. I am dreading the technical debt I have in test-unit, and meanwhile the (Rails) world is moving on to Minitest and the world appears to be settling on Rspec syntax regardless. Nowhere to be found is even a conversion HOWTO, so test-unit starts feeling even more like a ghetto, and increases my conversion anxiety, which is all too bad, since I like what I consider to be the simplicity of test-unit. |
|
Minitest and Test::Unit are part of the same package since 1.9, with Test::Unit implemented as a simple compatibility layer on top of Minitest:
http://www.rubyinside.com/a-minitestspec-tutorial-elegant-sp...
The Minitest assertions are quite similar to the old Test::Unit assertions, a large number are identical:
http://rubydoc.info/stdlib/minitest/1.9.3/MiniTest/Assertion...