From cbe62c03e45afb3249a87e16a76466ffd2f1a81b Mon Sep 17 00:00:00 2001 From: Andrew Haines Date: Tue, 12 Feb 2013 08:44:14 +0000 Subject: [PATCH] Uncomment accidentally-commented line :blush: --- spec/generators/decorator/decorator_generator_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/generators/decorator/decorator_generator_spec.rb b/spec/generators/decorator/decorator_generator_spec.rb index daf7f29..271063f 100644 --- a/spec/generators/decorator/decorator_generator_spec.rb +++ b/spec/generators/decorator/decorator_generator_spec.rb @@ -6,7 +6,7 @@ describe Rails::Generators::DecoratorGenerator do destination File.expand_path("../tmp", __FILE__) before { prepare_destination } - #after(:all) { FileUtils.rm_rf destination_root } + after(:all) { FileUtils.rm_rf destination_root } describe "the generated decorator" do subject { file("app/decorators/your_model_decorator.rb") }