update Rakefile to run test_units with the new test task
This commit is contained in:
parent
8c0facc5af
commit
a1ef306838
24
Rakefile
24
Rakefile
|
@ -109,17 +109,21 @@ namespace :spec do
|
|||
|
||||
namespace :integration do
|
||||
desc "Run the Rails integration specs"
|
||||
task :rails do
|
||||
Dir.chdir "spec/integration/rails" do
|
||||
result = system "rake test_unit_webrat"
|
||||
raise "Rails integration tests failed" unless result
|
||||
end
|
||||
end
|
||||
task :rails => ['rails:webrat','rails:selenium']
|
||||
|
||||
task :rails_selenium do
|
||||
Dir.chdir "spec/integration/rails" do
|
||||
result = system "rake test_unit_selenium"
|
||||
raise "Rails integration tests failed" unless result
|
||||
namespace :rails do
|
||||
task :selenium do
|
||||
Dir.chdir "spec/integration/rails" do
|
||||
result = system "rake test_unit:selenium"
|
||||
raise "Rails integration tests failed" unless result
|
||||
end
|
||||
end
|
||||
|
||||
task :webrat do
|
||||
Dir.chdir "spec/integration/rails" do
|
||||
result = system "rake test_unit:rails"
|
||||
raise "Rails integration tests failed" unless result
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue