diff options
Diffstat (limited to 'spec/gitlab_config_spec.rb')
-rw-r--r-- | spec/gitlab_config_spec.rb | 6 |
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 |