From edf167e84829e505b89e32f6ef4987f720f19627 Mon Sep 17 00:00:00 2001 From: Pierre Hedkvist Date: Fri, 13 Oct 2017 13:21:11 +0000 Subject: Added test case for starting rails with daemon option, this should set the option[:daemonize] to true, otherwise the option[:daemonize] will be set to false --- railties/test/commands/server_test.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'railties/test/commands/server_test.rb') diff --git a/railties/test/commands/server_test.rb b/railties/test/commands/server_test.rb index a6201e4f04..60bb8ca1db 100644 --- a/railties/test/commands/server_test.rb +++ b/railties/test/commands/server_test.rb @@ -22,6 +22,18 @@ class Rails::ServerTest < ActiveSupport::TestCase assert_nil options[:server] end + def test_server_option_with_daemon + args = ["-d"] + options = parse_arguments(args) + assert_equal true, options[:daemonize] + end + + def test_server_option_without_daemon + args = [] + options = parse_arguments(args) + assert_equal false, options[:daemonize] + end + def test_server_option_without_environment args = ["thin"] with_rack_env nil do -- cgit v1.2.3