aboutsummaryrefslogtreecommitdiffstats
path: root/actionsystemtest/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'actionsystemtest/Rakefile')
-rw-r--r--actionsystemtest/Rakefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/actionsystemtest/Rakefile b/actionsystemtest/Rakefile
deleted file mode 100644
index 8b07e8f4af..0000000000
--- a/actionsystemtest/Rakefile
+++ /dev/null
@@ -1,32 +0,0 @@
-require "rake/testtask"
-
-test_files = Dir.glob("test/**/*_test.rb")
-
-desc "Default Task"
-task default: :test
-
-task :package
-
-# Run the unit tests
-Rake::TestTask.new do |t|
- t.libs << "test"
- t.test_files = test_files
-
- t.warning = true
- t.verbose = true
- t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
-end
-
-namespace :test do
- task :isolated do
- test_files.all? do |file|
- sh(Gem.ruby, "-w", "-Ilib:test", file)
- end || raise("Failures")
- end
-end
-
-task :lines do
- load File.expand_path("..", File.dirname(__FILE__)) + "/tools/line_statistics"
- files = FileList["lib/**/*.rb"]
- CodeTools::LineStatistics.new(files).print_loc
-end