summaryrefslogtreecommitdiff
path: root/spec/models/pages_domain_spec.rb
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-05-30 10:11:46 +0200
committerJames Edwards-Jones <jedwardsjones@gitlab.com>2017-02-01 00:13:47 +0000
commit12d44272ec68e38760d5886b27546e8c13f7942a (patch)
tree2936c1ca6fca2d5c5278094148a1192fd303c649 /spec/models/pages_domain_spec.rb
parent66bfc9e9e78257d9e6e232b004f6152440ebe27b (diff)
downloadgitlab-ce-12d44272ec68e38760d5886b27546e8c13f7942a.tar.gz
Fix Rubocop offenses
Diffstat (limited to 'spec/models/pages_domain_spec.rb')
-rw-r--r--spec/models/pages_domain_spec.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/spec/models/pages_domain_spec.rb b/spec/models/pages_domain_spec.rb
index 0b95bf594c5..0cbea5be106 100644
--- a/spec/models/pages_domain_spec.rb
+++ b/spec/models/pages_domain_spec.rb
@@ -23,13 +23,13 @@ describe PagesDomain, models: true do
context 'no domain' do
let(:domain) { nil }
- it { is_expected.to_not be_valid }
+ it { is_expected.not_to be_valid }
end
context 'invalid domain' do
let(:domain) { '0123123' }
- it { is_expected.to_not be_valid }
+ it { is_expected.not_to be_valid }
end
context 'domain from .example.com' do
@@ -37,7 +37,7 @@ describe PagesDomain, models: true do
before { allow(Settings.pages).to receive(:host).and_return('domain.com') }
- it { is_expected.to_not be_valid }
+ it { is_expected.not_to be_valid }
end
end
@@ -47,13 +47,13 @@ describe PagesDomain, models: true do
context 'when only certificate is specified' do
let(:domain) { build(:pages_domain, :with_certificate) }
- it { is_expected.to_not be_valid }
+ it { is_expected.not_to be_valid }
end
context 'when only key is specified' do
let(:domain) { build(:pages_domain, :with_key) }
- it { is_expected.to_not be_valid }
+ it { is_expected.not_to be_valid }
end
context 'with matching key' do
@@ -65,7 +65,7 @@ describe PagesDomain, models: true do
context 'for not matching key' do
let(:domain) { build(:pages_domain, :with_missing_chain, :with_key) }
- it { is_expected.to_not be_valid }
+ it { is_expected.not_to be_valid }
end
end
@@ -157,6 +157,6 @@ describe PagesDomain, models: true do
subject { domain.certificate_text }
# We test only existence of output, since the output is long
- it { is_expected.to_not be_empty }
+ it { is_expected.not_to be_empty }
end
end