debian-mirror-gitlab/spec/lib/gitlab_spec.rb
2016-06-02 11:05:42 +05:30

18 lines
387 B
Ruby

require 'rails_helper'
describe Gitlab, lib: true do
describe '.com?' do
it 'is true when on GitLab.com' do
stub_config_setting(url: 'https://gitlab.com')
expect(described_class.com?).to eq true
end
it 'is false when not on GitLab.com' do
stub_config_setting(url: 'http://example.com')
expect(described_class.com?).to eq false
end
end
end