diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2013-06-21 22:35:20 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2013-06-21 22:35:20 +0200 |
commit | 47a9eea04ab88ef262119c56812e61b069a45e41 (patch) | |
tree | 406a535f9caaabb3bf171a1b1281d185e1a0c312 | |
parent | cbc2e7987e71ff34149acaf1f9f3205f30b67174 (diff) | |
download | rails-47a9eea04ab88ef262119c56812e61b069a45e41.tar.gz rails-47a9eea04ab88ef262119c56812e61b069a45e41.tar.bz2 rails-47a9eea04ab88ef262119c56812e61b069a45e41.zip |
Remove code related to the rails test command
Remove the mention about this command in the rails command's help
message and remove the "t" alias related to it.
-rw-r--r-- | railties/lib/rails/commands.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/lib/rails/commands.rb b/railties/lib/rails/commands.rb index e8c42b149b..48007dd2ab 100644 --- a/railties/lib/rails/commands.rb +++ b/railties/lib/rails/commands.rb @@ -5,7 +5,6 @@ aliases = { "d" => "destroy", "c" => "console", "s" => "server", - "t" => "test", "db" => "dbconsole", "r" => "runner" } @@ -17,7 +16,6 @@ The most common rails commands are: generate Generate new code (short-cut alias: "g") console Start the Rails console (short-cut alias: "c") server Start the Rails server (short-cut alias: "s") - test Running the test file (short-cut alias: "t") dbconsole Start a console for the database specified in config/database.yml (short-cut alias: "db") new Create a new Rails application. "rails new my_app" creates a |