4e14ccc74d
Instiki now runs on the Rails 2.3.0 Candidate Release. Among other improvements, this means that it now automagically selects between WEBrick and Mongrel. Just run ./instiki --daemon
25 lines
760 B
Ruby
25 lines
760 B
Ruby
require 'test/spec'
|
|
|
|
require 'rack/handler'
|
|
|
|
class Rack::Handler::Lobster; end
|
|
class RockLobster; end
|
|
|
|
context "Rack::Handler" do
|
|
specify "has registered default handlers" do
|
|
Rack::Handler.get('cgi').should.equal Rack::Handler::CGI
|
|
Rack::Handler.get('fastcgi').should.equal Rack::Handler::FastCGI
|
|
Rack::Handler.get('mongrel').should.equal Rack::Handler::Mongrel
|
|
Rack::Handler.get('webrick').should.equal Rack::Handler::WEBrick
|
|
end
|
|
|
|
specify "should get unregistered handler by name" do
|
|
Rack::Handler.get('lobster').should.equal Rack::Handler::Lobster
|
|
end
|
|
|
|
specify "should register custom handler" do
|
|
Rack::Handler.register('rock_lobster', 'RockLobster')
|
|
Rack::Handler.get('rock_lobster').should.equal RockLobster
|
|
end
|
|
end
|