From 661b630c2af7f5901198644a3c5a212b871fac5b Mon Sep 17 00:00:00 2001 From: Yurii Rashkovskii Date: Wed, 30 Apr 2008 11:10:07 +0300 Subject: [PATCH] Working pending config_spec example has been enabled --- spec/lib/strokedb/config_spec.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/spec/lib/strokedb/config_spec.rb b/spec/lib/strokedb/config_spec.rb index 2eb1e1e4..b1e193d3 100644 --- a/spec/lib/strokedb/config_spec.rb +++ b/spec/lib/strokedb/config_spec.rb @@ -134,10 +134,8 @@ it "should use specified store if told so" do StrokeDB.send!(:remove_const,'SomeFunnyStore') if defined?(SomeFunnyStore) StrokeDB::SomeFunnyStore = Class.new(Store) - pending("not that important now") do - config = StrokeDB::Config.build :store => :some_funny, :base_path => @base_path - config.stores[:default].should be_a_kind_of(SomeFunnyStore) - end + config = StrokeDB::Config.build :store => :some_funny, :base_path => @base_path + config.stores[:default].should be_a_kind_of(SomeFunnyStore) end it "should add storages as he is told to" do