apache-config-generator/spec/apache/directory_spec.rb

16 lines
427 B
Ruby
Raw Normal View History

2010-05-07 17:56:49 +00:00
require 'apache/config'
describe Apache::Master, "should provide basic helpers for configuration" do
let(:apache) { Apache::Config }
before { apache.reset! }
it "should create the list of options" do
{ :options => 'Options', :index_options => 'IndexOptions' }.each do |method, tag|
apache.reset!
apache.send(method, :test, 'test2')
apache.to_a.should == [ "#{tag} Test Test2" ]
end
end
end