From 815775860b876c5e4d0d1a0b39a9eb84dd5f8605 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Tue, 4 May 2010 11:51:06 -0400 Subject: [PATCH] converage addition --- spec/config_spec.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spec/config_spec.rb b/spec/config_spec.rb index ae5654a..1cc4e70 100644 --- a/spec/config_spec.rb +++ b/spec/config_spec.rb @@ -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 == ['', ' Something "goes here"', ''] + + Apache::Config.reset! + + Apache::Config.blockify("Tag", 'part') do + something "goes here" + end.should == ['', ' Something "goes here"', ''] end end