Class: LastHit::TestHandler
- Inherits:
-
Object
- Object
- LastHit::TestHandler
- Defined in:
- lib/last_hit/test_handler.rb
Class Method Summary collapse
Class Method Details
.run(files) ⇒ Object
4 5 6 7 8 9 10 |
# File 'lib/last_hit/test_handler.rb', line 4 def run(files) files.each do |file| p "Start to run file #{file}" `bundle exec rspec #{file}`.split("\n").map(&method(:p)) 3.times { p "" } end end |