We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63f6a4c commit 67a47ccCopy full SHA for 67a47cc
1 file changed
spec/classes/python_spec.rb
@@ -26,18 +26,13 @@
26
describe "with python::dev" do
27
context "true" do
28
let (:params) {{ :dev => true }}
29
- it { is_expected.to contain_package("python-dev").with(
30
- "ensure" => "present")
31
- }
+ it { is_expected.to contain_package("python-dev").with_ensure('present') }
32
end
33
context "empty/default" do
34
35
- "ensure" => "absent")
36
+ it { is_expected.to contain_package("python-dev").with_ensure('absent') }
37
38
39
-
40
+
41
describe "with manage_gunicorn" do
42
43
let (:params) {{ :manage_gunicorn => true }}
0 commit comments