converage addition

This commit is contained in:
John Bintz 2010-05-04 11:51:06 -04:00
parent 54b2113653
commit 815775860b

View File

@ -40,5 +40,11 @@ describe Apache::Config, "should handle the basics of Apache config" do
Apache::Config.blockify("Tag", [ 'part', 'part2' ]) do
something "goes here"
end.should == ['<Tag "part" "part2">', ' Something "goes here"', '</Tag>']
Apache::Config.reset!
Apache::Config.blockify("Tag", 'part') do
something "goes here"
end.should == ['<Tag "part">', ' Something "goes here"', '</Tag>']
end
end