opsmgr 0.32.0 → 0.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/opsmgr/ui_helpers/delete_product_if_present_spec.rb +4 -10
- data/lib/opsmgr/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1366fe6aff5a792aa7cf9f0aee525b0fc4b28049
|
|
4
|
+
data.tar.gz: 8536240aedb393da7875b02dae3fae9ded1b711f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73baab5006d2b809bf7084133155d66975d75c810a570e5b4e97d0ba7bde8831d3fd6825ffc1eaa73490850ea7ae0fd672ebf7572b3d3b19d7c736a6259b8c3c
|
|
7
|
+
data.tar.gz: b2fda1776737c6d0513c21bac4971cf476a2e2e3c62bdcc00fb73932cddf338799e787eaa14b03c505e95fa1351184ed9bc3c7cb39adec4bb9d82d8c495ba85d
|
|
@@ -18,20 +18,14 @@ RSpec.describe 'Deleting a product if it is present', order: :defined do
|
|
|
18
18
|
it 'removes the product if it exists on the dashboard' do
|
|
19
19
|
if current_ops_manager.product_dashboard.product_on_dashboard?(product_name)
|
|
20
20
|
current_ops_manager.product_dashboard.delete_product(product_name)
|
|
21
|
+
current_ops_manager.product_dashboard.apply_updates
|
|
22
|
+
poll_up_to_mins(delete_timeout) do
|
|
23
|
+
expect(current_ops_manager.state_change_progress).to be_state_change_success
|
|
24
|
+
end
|
|
21
25
|
else
|
|
22
26
|
puts "#{product_name} does not exist on dashboard, skipping deletion"
|
|
23
27
|
end
|
|
24
28
|
end
|
|
25
|
-
|
|
26
|
-
it 'deletes' do
|
|
27
|
-
current_ops_manager.product_dashboard.apply_updates
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
it 'waits for a successful installation' do
|
|
31
|
-
poll_up_to_mins(delete_timeout) do
|
|
32
|
-
expect(current_ops_manager.state_change_progress).to be_state_change_success
|
|
33
|
-
end
|
|
34
|
-
end
|
|
35
29
|
end
|
|
36
30
|
# Copyright (c) 2014-2015 Pivotal Software, Inc.
|
|
37
31
|
# All rights reserved.
|
data/lib/opsmgr/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opsmgr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.33.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Release Engineering
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|