1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/test/test_config.rb

17 lines
334 B
Ruby
Raw Normal View History

2011-12-07 16:42:53 -05:00
require 'test/unit'
require 'puma'
require 'puma/configuration'
class TestConfigFile < Test::Unit::TestCase
def test_app_from_app_DSL
opts = { :config_file => "test/config/app.rb" }
conf = Puma::Configuration.new opts
conf.load
app = conf.app
2013-02-06 17:44:51 -05:00
assert_equal [200, {}, ["embedded app"]], app.call({})
2011-12-07 16:42:53 -05:00
end
end