Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-05-30 11:11:46 +0300
committerJames Edwards-Jones <jedwardsjones@gitlab.com>2017-02-01 03:13:47 +0300
commit12d44272ec68e38760d5886b27546e8c13f7942a (patch)
tree2936c1ca6fca2d5c5278094148a1192fd303c649 /spec/services/projects
parent66bfc9e9e78257d9e6e232b004f6152440ebe27b (diff)
Fix Rubocop offenses
Diffstat (limited to 'spec/services/projects')
-rw-r--r--spec/services/projects/update_pages_service_spec.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/services/projects/update_pages_service_spec.rb b/spec/services/projects/update_pages_service_spec.rb
index 4eac7875864..af1c6a5e7b5 100644
--- a/spec/services/projects/update_pages_service_spec.rb
+++ b/spec/services/projects/update_pages_service_spec.rb
@@ -34,7 +34,7 @@ describe Projects::UpdatePagesService do
it 'limits pages size' do
stub_application_setting(max_pages_size: 1)
- expect(execute).to_not eq(:success)
+ expect(execute).not_to eq(:success)
end
it 'removes pages after destroy' do
@@ -49,29 +49,29 @@ describe Projects::UpdatePagesService do
it 'fails if sha on branch is not latest' do
pipeline.update_attributes(sha: 'old_sha')
build.update_attributes(artifacts_file: file)
- expect(execute).to_not eq(:success)
+ expect(execute).not_to eq(:success)
end
it 'fails for empty file fails' do
build.update_attributes(artifacts_file: empty_file)
- expect(execute).to_not eq(:success)
+ expect(execute).not_to eq(:success)
end
end
end
it 'fails to remove project pages when no pages is deployed' do
- expect(PagesWorker).to_not receive(:perform_in)
+ expect(PagesWorker).not_to receive(:perform_in)
expect(project.pages_deployed?).to be_falsey
project.destroy
end
it 'fails if no artifacts' do
- expect(execute).to_not eq(:success)
+ expect(execute).not_to eq(:success)
end
it 'fails for invalid archive' do
build.update_attributes(artifacts_file: invalid_file)
- expect(execute).to_not eq(:success)
+ expect(execute).not_to eq(:success)
end
def execute