diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-06-21 18:48:51 -0700 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-06-21 18:48:51 -0700 |
commit | 88beaee64eeb29bec4a3477dedf6dbbb08b2e108 (patch) | |
tree | 7c5ccfe24b5185b79764b6e719b53e298beeff60 | |
parent | ecdce2e105280fcb367be8a809f8ff24a719a4f8 (diff) | |
parent | 47a9eea04ab88ef262119c56812e61b069a45e41 (diff) | |
download | rails-88beaee64eeb29bec4a3477dedf6dbbb08b2e108.tar.gz rails-88beaee64eeb29bec4a3477dedf6dbbb08b2e108.tar.bz2 rails-88beaee64eeb29bec4a3477dedf6dbbb08b2e108.zip |
Merge pull request #11050 from robin850/remove-rails-test-mention
Remove code related to the rails test command
-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 |