From c98f6f21c88454af9ac1a51f0a472bdc0bcde551 Mon Sep 17 00:00:00 2001 From: Hexagon Date: Tue, 30 Nov 2010 22:27:19 +0100 Subject: [PATCH] config spec now makes sense --- spec/config/config_spec.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spec/config/config_spec.rb b/spec/config/config_spec.rb index 1f65a2bca..8a0db329a 100644 --- a/spec/config/config_spec.rb +++ b/spec/config/config_spec.rb @@ -4,16 +4,16 @@ describe 'making sure the config is parsed as should' do - describe 'app config' do - - it 'pod_url has a trailing slash' do + describe 'pod_url' do + it 'should have a trailing slash' do APP_CONFIG[:pod_url].should == 'http://example.org/' end - - it 'terse_pod_url is correctly parsed' do + end + + describe 'terse_pod_url' + it 'should be correctly parsed' do APP_CONFIG[:terse_pod_url].should == 'example.org' end - end end