Commit 8ba3e473 authored by Matija Čupić's avatar Matija Čupić

Fix GCP Controller spec

parent b8b2f5ff
...@@ -145,6 +145,7 @@ describe Projects::Clusters::GcpController do ...@@ -145,6 +145,7 @@ describe Projects::Clusters::GcpController do
end end
it 'creates a new cluster' do it 'creates a new cluster' do
expect(CheckGcpProjectBillingWorker).to receive(:store_session_token)
expect(ClusterProvisionWorker).to receive(:perform_async) expect(ClusterProvisionWorker).to receive(:perform_async)
expect { go }.to change { Clusters::Cluster.count } expect { go }.to change { Clusters::Cluster.count }
.and change { Clusters::Providers::Gcp.count } .and change { Clusters::Providers::Gcp.count }
...@@ -156,9 +157,12 @@ describe Projects::Clusters::GcpController do ...@@ -156,9 +157,12 @@ describe Projects::Clusters::GcpController do
context 'when google project billing is not enabled' do context 'when google project billing is not enabled' do
it 'renders the cluster form with an error' do it 'renders the cluster form with an error' do
expect(CheckGcpProjectBillingWorker).to receive(:perform_async)
expect(CheckGcpProjectBillingWorker).to receive(:store_session_token)
go go
expect(response).to set_flash[:error] expect(response).to set_flash[:alert]
expect(response).to render_template('new') expect(response).to render_template('new')
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment