summaryrefslogtreecommitdiff
path: root/spec/controllers/groups/runners_controller_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/controllers/groups/runners_controller_spec.rb')
-rw-r--r--spec/controllers/groups/runners_controller_spec.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/controllers/groups/runners_controller_spec.rb b/spec/controllers/groups/runners_controller_spec.rb
index 91ff0a53ec7..d6da9a4e8d0 100644
--- a/spec/controllers/groups/runners_controller_spec.rb
+++ b/spec/controllers/groups/runners_controller_spec.rb
@@ -220,7 +220,7 @@ RSpec.describe Groups::RunnersController do
end
it 'marks the runner as active, ticks the queue, and redirects' do
- runner.update(active: false)
+ runner.update!(active: false)
expect do
post :resume, params: params
@@ -231,7 +231,7 @@ RSpec.describe Groups::RunnersController do
end
it 'marks the project runner as active, ticks the queue, and redirects' do
- runner_project.update(active: false)
+ runner_project.update!(active: false)
expect do
post :resume, params: params_runner_project
@@ -248,7 +248,7 @@ RSpec.describe Groups::RunnersController do
end
it 'responds 404 and does not activate the runner' do
- runner.update(active: false)
+ runner.update!(active: false)
expect do
post :resume, params: params
@@ -259,7 +259,7 @@ RSpec.describe Groups::RunnersController do
end
it 'responds 404 and does not activate the project runner' do
- runner_project.update(active: false)
+ runner_project.update!(active: false)
expect do
post :resume, params: params_runner_project
@@ -278,7 +278,7 @@ RSpec.describe Groups::RunnersController do
end
it 'marks the runner as inactive, ticks the queue, and redirects' do
- runner.update(active: true)
+ runner.update!(active: true)
expect do
post :pause, params: params
@@ -289,7 +289,7 @@ RSpec.describe Groups::RunnersController do
end
it 'marks the project runner as inactive, ticks the queue, and redirects' do
- runner_project.update(active: true)
+ runner_project.update!(active: true)
expect do
post :pause, params: params_runner_project
@@ -306,7 +306,7 @@ RSpec.describe Groups::RunnersController do
end
it 'responds 404 and does not update the runner or queue' do
- runner.update(active: true)
+ runner.update!(active: true)
expect do
post :pause, params: params
@@ -317,7 +317,7 @@ RSpec.describe Groups::RunnersController do
end
it 'responds 404 and does not update the project runner or queue' do
- runner_project.update(active: true)
+ runner_project.update!(active: true)
expect do
post :pause, params: params