1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/test/server_test.rb
Simon Rozet ff0d068687 Use contest instead of test/spec/mini
See <http://github.com/citrusbyte/contest> for more info. The
contest.rb file is included under the test/ directory.
2009-03-31 02:23:48 -07:00

43 lines
848 B
Ruby

require File.dirname(__FILE__) + '/helper'
class Rack::Handler::Mock
extend Test::Unit::Assertions
def self.run(app, options={})
assert(app < Sinatra::Base)
assert_equal 9001, options[:Port]
assert_equal 'foo.local', options[:Host]
yield new
end
def stop
end
end
class ServerTest < Test::Unit::TestCase
setup do
mock_app {
set :server, 'mock'
set :host, 'foo.local'
set :port, 9001
}
$stdout = File.open('/dev/null', 'wb')
end
def teardown
$stdout = STDOUT
end
it "locates the appropriate Rack handler and calls ::run" do
@app.run!
end
it "sets options on the app before running" do
@app.run! :sessions => true
assert @app.sessions?
end
it "falls back on the next server handler when not found" do
@app.run! :server => %w[foo bar mock]
end
end