apache-config-generator/spec/master_spec.rb
2010-05-05 10:44:20 -04:00

28 lines
658 B
Ruby

require 'apache/config'
describe Apache::Master, "should provide basic helpers for configuration" do
before do
Apache::Config.reset!
end
it "should build the modules with the provided block" do
Apache::Config.modules(:this, :that) do
my "is here"
end
Apache::Config.config.should == [
'',
'LoadModule "this_module" "modules/mod_this.so"',
'LoadModule "that_module" "modules/mod_that.so"',
'LoadModule "my_module" "is here"',
''
]
end
it "should set up the runner" do
Apache::Config.runner('test', 'test2')
Apache::Config.config.should == [ 'User test', 'Group test2' ]
end
end