mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
Use minitest-reporters
This commit is contained in:
parent
46d2e803c6
commit
d62d756e63
3 changed files with 4 additions and 0 deletions
1
Rakefile
1
Rakefile
|
@ -7,6 +7,7 @@ Rake::TestTask.new do |t|
|
|||
t.libs << 'lib' << 'test'
|
||||
files = Dir['test/*_test.rb']
|
||||
files << 'test/haml-spec/hamlit_test.rb'
|
||||
t.ruby_opts = %w[-rtest_helper]
|
||||
t.test_files = files
|
||||
t.verbose = true
|
||||
end
|
||||
|
|
|
@ -23,6 +23,7 @@ Gem::Specification.new do |spec|
|
|||
spec.add_dependency 'temple', '~> 0.7.6'
|
||||
|
||||
spec.add_development_dependency 'bundler', '~> 1.10'
|
||||
spec.add_development_dependency 'minitest-reporters', '~> 1.1'
|
||||
spec.add_development_dependency 'rake', '~> 10.0'
|
||||
spec.add_development_dependency 'thor', '~> 0.19'
|
||||
end
|
||||
|
|
2
test/test_helper.rb
Normal file
2
test/test_helper.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
require 'minitest/reporters'
|
||||
Minitest::Reporters.use!
|
Loading…
Reference in a new issue