sobrinho / minitest-colorize

Colorize MiniTest output and show failing tests instantly
MIT License
25 stars 6 forks source link

Getting Minitest::VERSION missing error #11

Open pitosalas opened 10 years ago

pitosalas commented 10 years ago

"all" I did was add colorize to my gem file:

group :test do gem 'minitest-rails' gem 'minitest-colorize' gem 'faker' end

And did a bundle command. (Also tried bundle install)

And when I run the tests: ruby test/controllers/assessment_controller_test.rb

I get this error: /Users/pitosalas/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/minitest-5.3.3/lib/minitest/unit.rb:22:in `class:Unit': uninitialized constant Minitest::VERSION (NameError)

s-s-w commented 10 years ago

Same issue for me.

I don't think this gem is being maintained anymore...?

skatkov commented 9 years ago

Same issue here.

s-s-w commented 9 years ago

I switched instead to using minitest reporters:

    require 'minitest/reporters'
    Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new