Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add progress bar formatter #23

Merged
merged 1 commit into from Jan 25, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/generators/thincloud/test/templates/minitest.rb
@@ -1,8 +1,11 @@
class MiniTest::Rails::ActiveSupport::TestCase

# Register any classes that respond to validate to a specific test class
Minitest::Spec.register_spec_type(self) do |desc|
desc.respond_to?(:validate)
end
end

unless ENV["CI"]
require "minitest/reporters"
MiniTest::Reporters.use! MiniTest::Reporters::ProgressReporter.new
end
1 change: 1 addition & 0 deletions thincloud-test.gemspec
Expand Up @@ -32,5 +32,6 @@ Gem::Specification.new do |s|
s.add_dependency "mocha", "~> 0.13.2" # Must be after minitest
s.add_dependency "minitest-rails-capybara", "~> 0.5.1"
s.add_dependency "shoulda-matchers", "1.4.1" # 1.4.2 requires mocha 0.10
s.add_dependency "minitest-reporters", "~> 0.14.6"

end