Commit ddf004fa authored by Gabor Nagy's avatar Gabor Nagy

Fix spec for GitlabConfig.gitlab_url.

parent f959bd4d
......@@ -21,10 +21,12 @@ describe GitlabConfig do
end
describe :gitlab_url do
let(:url) { 'http://test.com' }
subject { config.gitlab_url }
before { config.send(:config)['gitlab_url'] = url }
it { should_not be_empty }
it { should eq('http://localhost:8080/') }
it { should eq(url) }
end
describe :audit_usernames do
......@@ -62,4 +64,4 @@ describe GitlabConfig do
it { should_not include('-h') }
end
end
end
\ No newline at end of file
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment