aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'activestorage/Rakefile')
-rw-r--r--activestorage/Rakefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/activestorage/Rakefile b/activestorage/Rakefile
new file mode 100644
index 0000000000..aa71a65f6e
--- /dev/null
+++ b/activestorage/Rakefile
@@ -0,0 +1,14 @@
+# frozen_string_literal: true
+
+require "bundler/setup"
+require "bundler/gem_tasks"
+require "rake/testtask"
+
+Rake::TestTask.new do |test|
+ test.libs << "app/controllers"
+ test.libs << "test"
+ test.test_files = FileList["test/**/*_test.rb"]
+ test.warning = false
+end
+
+task default: :test