aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'actiontext/Rakefile')
-rw-r--r--actiontext/Rakefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/actiontext/Rakefile b/actiontext/Rakefile
index 36aed17282..a759a22190 100644
--- a/actiontext/Rakefile
+++ b/actiontext/Rakefile
@@ -8,7 +8,13 @@ task :package
Rake::TestTask.new do |t|
t.libs << "test"
- t.pattern = "test/**/*_test.rb"
+ t.test_files = FileList["test/**/*_test.rb"].exclude("test/system/**/*", "test/dummy/**/*")
+ t.verbose = true
+end
+
+Rake::TestTask.new "test:system" do |t|
+ t.libs << "test"
+ t.test_files = FileList["test/system/**/*_test.rb"]
t.verbose = true
end