6

Ruby test unit gem doesn't show dots for passed test. I'm running on Ubuntu 11.04 .

It shows 'E' and 'F' for failure, but nothing for pass. This problem dissapears if I comment gem 'test-unit' line, but in that case test-unit 2.x features (like omit, pend) is not available.

m.silenus
  • 492
  • 7
  • 15

2 Answers2

1

I would prefer to use 'turn' gem for more pretty output for the testing.

Just install the gem turn and use it in your app.

Bo Persson
  • 90,663
  • 31
  • 146
  • 203
uday
  • 8,544
  • 4
  • 30
  • 54
  • 1
    `turn` isn't compatible with `Test::Unit 2` https://github.com/guard/guard-test/issues/8#issuecomment-2242319 – jibiel Jan 03 '12 at 21:16
1

If you're using Ruby 1.9 did you try MiniTest? It's include in Ruby and the output is well formatted,

83 tests, 106 assertions, 0 failures, 0 errors, 1 skips

You can learn more about MiniTest here

Frank Boucher
  • 1,834
  • 20
  • 25