diff options
author | eileencodes <eileencodes@gmail.com> | 2016-11-06 18:55:15 -0500 |
---|---|---|
committer | eileencodes <eileencodes@gmail.com> | 2017-02-20 15:07:33 -0500 |
commit | 5bf0aa6745db27c45c0778f9f6e9046f9ee9fb94 (patch) | |
tree | 7ba85a8ea15146725c68ce6b9e5a94ebac6d0c9c /actionsystemtest/Rakefile | |
parent | a21e18d5080a2c4808330271885f5664a725d3f3 (diff) | |
download | rails-5bf0aa6745db27c45c0778f9f6e9046f9ee9fb94.tar.gz rails-5bf0aa6745db27c45c0778f9f6e9046f9ee9fb94.tar.bz2 rails-5bf0aa6745db27c45c0778f9f6e9046f9ee9fb94.zip |
Turn system testing into it's own gem and rename
Renames `Rails::SystemTestCase` to `ActionSystemTest` and moves it to a
gem under the Rails name.
We need to name the class `ActionSystemTestCase` because the gem expects
a module but tests themselves expect a class.
Adds MIT-LICENSE, CHANGELOG, and README for the future.
Diffstat (limited to 'actionsystemtest/Rakefile')
-rw-r--r-- | actionsystemtest/Rakefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/actionsystemtest/Rakefile b/actionsystemtest/Rakefile new file mode 100644 index 0000000000..8b07e8f4af --- /dev/null +++ b/actionsystemtest/Rakefile @@ -0,0 +1,32 @@ +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 |