spec/command_spec.rb in macournoyer-thin-1.0.1 vs spec/command_spec.rb in macournoyer-thin-1.1.0

- old
+ new

@@ -2,11 +2,11 @@ describe Command do before do Command.script = 'thin' @command = Command.new(:start, :port => 3000, :daemonize => true, :log => 'hi.log', - :require => %w(rubygems thin)) + :require => %w(rubygems thin), :no_epoll => true) end it 'should shellify command' do out = @command.shellify out.should include('--port=3000', '--daemonize', '--log="hi.log"', 'thin start --') @@ -14,7 +14,12 @@ end it 'should shellify Array argument to multiple parameters' do out = @command.shellify out.should include('--require="rubygems"', '--require="thin"') + end + + it 'should convert _ to - in option name' do + out = @command.shellify + out.should include('--no-epoll') end end \ No newline at end of file