summaryrefslogtreecommitdiff
path: root/spec/gitlab_config_spec.rb
diff options
context:
space:
mode:
authorGabor Nagy <mail@aigeruth.hu>2014-07-04 20:33:07 +0200
committerGabor Nagy <mail@aigeruth.hu>2014-07-06 00:32:27 +0200
commitddf004fa3685166297dfe6db63a7d4fe587b3f31 (patch)
treef48cf58ddadd436aba1a1ee0db83cf41ac783199 /spec/gitlab_config_spec.rb
parentf959bd4d1f80811bb41a9fd6197a44a9ce641157 (diff)
downloadgitlab-shell-ddf004fa3685166297dfe6db63a7d4fe587b3f31.tar.gz
Fix spec for GitlabConfig.gitlab_url.
Diffstat (limited to 'spec/gitlab_config_spec.rb')
-rw-r--r--spec/gitlab_config_spec.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/spec/gitlab_config_spec.rb b/spec/gitlab_config_spec.rb
index 2b5525c..aeeac56 100644
--- a/spec/gitlab_config_spec.rb
+++ b/spec/gitlab_config_spec.rb
@@ -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