diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2017-01-15 20:15:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-15 20:15:45 +0100 |
commit | f8a3981beb4221c230a2dc366db5fcc5e276f035 (patch) | |
tree | cb22b2e410896c7a212744916f9a541a9ac6f444 /railties/test/commands/server_test.rb | |
parent | 0bc8d0fb88101a7ea5f87df5f5b384746e3cf06e (diff) | |
parent | f5f834fb349c62efdb3db45b8ec392c9f70826f0 (diff) | |
download | rails-f8a3981beb4221c230a2dc366db5fcc5e276f035.tar.gz rails-f8a3981beb4221c230a2dc366db5fcc5e276f035.tar.bz2 rails-f8a3981beb4221c230a2dc366db5fcc5e276f035.zip |
Merge pull request #27601 from y-yagi/make_work_all_commands_from_engine
Make all rails commands work in engine
Diffstat (limited to 'railties/test/commands/server_test.rb')
-rw-r--r-- | railties/test/commands/server_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/test/commands/server_test.rb b/railties/test/commands/server_test.rb index 527529aa52..e3dfc3e82b 100644 --- a/railties/test/commands/server_test.rb +++ b/railties/test/commands/server_test.rb @@ -122,11 +122,11 @@ class Rails::ServerTest < ActiveSupport::TestCase end def test_default_options - old_default_options = parse_arguments + server = Rails::Server.new + old_default_options = server.default_options Dir.chdir("..") do - default_options = parse_arguments - assert_equal old_default_options, default_options + assert_equal old_default_options, server.default_options end end |