diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2019-01-16 21:44:44 -0500 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2019-01-17 16:08:35 -0500 |
commit | fa791fb8e2a718b5d0430c7ca5a454678dfc192d (patch) | |
tree | af2c95e705103bcff663edd282e485a77ea8bd08 /railties/test | |
parent | 553b86fc751c751db504bcbe2d033eb2bb5b6a0b (diff) | |
download | rails-fa791fb8e2a718b5d0430c7ca5a454678dfc192d.tar.gz rails-fa791fb8e2a718b5d0430c7ca5a454678dfc192d.tar.bz2 rails-fa791fb8e2a718b5d0430c7ca5a454678dfc192d.zip |
Remove deprecated `server` argument from the rails server command
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/commands/server_test.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/railties/test/commands/server_test.rb b/railties/test/commands/server_test.rb index 25b89ecbd8..14d63a78e0 100644 --- a/railties/test/commands/server_test.rb +++ b/railties/test/commands/server_test.rb @@ -38,10 +38,6 @@ class Rails::Command::ServerCommandTest < ActiveSupport::TestCase assert_no_match(/Maybe you meant/, output) end - def test_using_positional_argument_deprecation - assert_match(/DEPRECATION WARNING/, run_command("tin")) - end - def test_using_known_server_that_isnt_in_the_gemfile assert_match(/Could not load server "unicorn". Maybe you need to the add it to the Gemfile/, run_command("-u", "unicorn")) end |