Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into quinteros
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryguy committed Oct 26, 2023
2 parents dc83350 + a21ec2f commit a5e9db9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
PGPASSWORD: smartvm
CC_TEST_REPORTER_ID: "${{ secrets.CC_TEST_REPORTER_ID }}"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up system
run: bin/before_install
- name: Set up Ruby
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,20 @@
end
end

context "#pause!" do
let(:zone) { FactoryBot.create(:zone) }
let(:ems) { FactoryBot.create(:ems_cisco_intersight_physical_infra, :zone => zone) }

include_examples "ExtManagementSystem#pause!"
end

context "#resume!" do
let(:zone) { FactoryBot.create(:zone) }
let(:ems) { FactoryBot.create(:ems_cisco_intersight_physical_infra, :zone => zone) }

include_examples "ExtManagementSystem#resume!"
end

context "#connect" do
it "aborts on missing credentials" do
ems = FactoryBot.create(:ems_cisco_intersight_physical_infra)
Expand Down

0 comments on commit a5e9db9

Please sign in to comment.