diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2017-04-06 19:54:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-06 19:54:43 -0400 |
commit | 0006fb78aa09f247f7f9c06b09ece3d2af207395 (patch) | |
tree | 6a885c957862f1b4367eb1a3c8541e44058f4e1e /railties | |
parent | a500b4796f86b05b3fece414f090a496d3cb4298 (diff) | |
parent | a31584692304cebd06f6530ce0347ef8075e46e1 (diff) | |
download | rails-0006fb78aa09f247f7f9c06b09ece3d2af207395.tar.gz rails-0006fb78aa09f247f7f9c06b09ece3d2af207395.tar.bz2 rails-0006fb78aa09f247f7f9c06b09ece3d2af207395.zip |
Merge pull request #28688 from kamipo/remove_duplicated_test_prefix
Remove duplicated "test" prefix
Diffstat (limited to 'railties')
-rw-r--r-- | railties/test/application/rake/migrations_test.rb | 6 | ||||
-rw-r--r-- | railties/test/application/test_runner_test.rb | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/railties/test/application/rake/migrations_test.rb b/railties/test/application/rake/migrations_test.rb index 00f6620188..449d281967 100644 --- a/railties/test/application/rake/migrations_test.rb +++ b/railties/test/application/rake/migrations_test.rb @@ -77,7 +77,7 @@ module ApplicationTests assert_equal "Schema migrations table does not exist yet.\n", output end - test "test migration status" do + test "migration status" do Dir.chdir(app_path) do `bin/rails generate model user username:string password:string; bin/rails generate migration add_email_to_users email:string; @@ -117,7 +117,7 @@ module ApplicationTests end end - test "test migration status after rollback and redo" do + test "migration status after rollback and redo" do Dir.chdir(app_path) do `bin/rails generate model user username:string password:string; bin/rails generate migration add_email_to_users email:string; @@ -224,7 +224,7 @@ module ApplicationTests end end - test "test migration status migrated file is deleted" do + test "migration status migrated file is deleted" do Dir.chdir(app_path) do `bin/rails generate model user username:string password:string; bin/rails generate migration add_email_to_users email:string; diff --git a/railties/test/application/test_runner_test.rb b/railties/test/application/test_runner_test.rb index a8e3a7ec5b..23b259b503 100644 --- a/railties/test/application/test_runner_test.rb +++ b/railties/test/application/test_runner_test.rb @@ -323,7 +323,7 @@ module ApplicationTests assert true end - test "test line filter does not run this" do + test "line filter does not run this" do assert true end end |