aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-04-04 20:50:24 -0400
committerGitHub <noreply@github.com>2018-04-04 20:50:24 -0400
commitd514ce9199fac58e569482dc901e53d0526abdf7 (patch)
tree1abfd8378f991f557c322cc10fb6fef385e449ea
parentfe4e9d4c5d82806fdaf28c87c731132f81f0ac3e (diff)
parenta680de702b4ccdeba83ea759be74461ebfa43129 (diff)
downloadrails-d514ce9199fac58e569482dc901e53d0526abdf7.tar.gz
rails-d514ce9199fac58e569482dc901e53d0526abdf7.tar.bz2
rails-d514ce9199fac58e569482dc901e53d0526abdf7.zip
Merge pull request #32462 from yhirano55/add_ujs_desc_to_rakefile_in_actionview
Add ujs desc to rakefile in actionview
-rw-r--r--actionview/Rakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/actionview/Rakefile b/actionview/Rakefile
index 8650f541b0..4d7a2f1812 100644
--- a/actionview/Rakefile
+++ b/actionview/Rakefile
@@ -29,6 +29,7 @@ namespace :test do
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
+ desc "Run tests for rails-ujs"
task :ujs do
begin
Dir.mkdir("log")
@@ -56,7 +57,7 @@ namespace :test do
end
namespace :integration do
- desc "ActiveRecord Integration Tests"
+ # ActiveRecord Integration Tests
Rake::TestTask.new(:active_record) do |t|
t.libs << "test"
t.test_files = Dir.glob("test/activerecord/*_test.rb")
@@ -65,7 +66,7 @@ namespace :test do
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
- desc "ActionPack Integration Tests"
+ # ActionPack Integration Tests
Rake::TestTask.new(:action_pack) do |t|
t.libs << "test"
t.test_files = Dir.glob("test/actionpack/**/*_test.rb")