aboutsummaryrefslogtreecommitdiffstats
path: root/spec/shared_examples.rb
diff options
context:
space:
mode:
authorEmilien Macchi <emilien.macchi@enovance.com>2015-02-02 11:39:21 -0500
committerEmilien Macchi <emilien.macchi@enovance.com>2015-02-02 11:39:21 -0500
commit37ddc04170fd09ff2899a265ddefb637ec6f8cd0 (patch)
treed7374bf7d43a94b9c4787d9d1918267a16711c7b /spec/shared_examples.rb
parentbf1685633f0ee31c7a5df8fe858867c3c6fecb5b (diff)
Add basic structure for a Puppet module
Diffstat (limited to 'spec/shared_examples.rb')
-rw-r--r--spec/shared_examples.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/shared_examples.rb b/spec/shared_examples.rb
new file mode 100644
index 0000000..fec0eac
--- /dev/null
+++ b/spec/shared_examples.rb
@@ -0,0 +1,5 @@
+shared_examples_for "a Puppet::Error" do |description|
+ it "with message matching #{description.inspect}" do
+ expect { is_expected.to have_class_count(1) }.to raise_error(Puppet::Error, description)
+ end
+end