config spec now makes sense

This commit is contained in:
Hexagon 2010-11-30 22:27:19 +01:00
parent 185e84537e
commit c98f6f21c8

View file

@ -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
APP_CONFIG[:terse_pod_url].should == 'example.org'
end
describe 'terse_pod_url'
it 'should be correctly parsed' do
APP_CONFIG[:terse_pod_url].should == 'example.org'
end
end
end