Rakefile in matest-1.0.1 vs Rakefile in matest-1.1.0
- old
+ new
@@ -5,7 +5,7 @@
arg_files = ENV["FILES"] && ENV["FILES"].split(/[\s,]+/)
all_files = Rake::FileList["./spec/matest_specs/**/*_spec.rb"]
files = arg_files || all_files
puts "\nRuning tests for: #{ files.join(" ") }\n\n"
- system *["./bin/mt"].concat(files)
+ system *["./bin/matest"].concat(files)
end