summaryrefslogtreecommitdiffstats
path: root/spec/unit/parameter
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2010-08-12 15:33:14 +1000
committerJames Turnbull <james@lovedthanlost.net>2010-08-12 15:35:19 +1000
commit252c9b84f79307e5caa50b50e093ad493993622d (patch)
treeabce1a16ae21d4f9b73ef17d086af39b885e2806 /spec/unit/parameter
parent1157e8dbaf310cca6f56dda3fa9f100b458662ee (diff)
downloadpuppet-252c9b84f79307e5caa50b50e093ad493993622d.tar.gz
puppet-252c9b84f79307e5caa50b50e093ad493993622d.tar.xz
puppet-252c9b84f79307e5caa50b50e093ad493993622d.zip
Further RST to Markdown fixes for types, values, tests
Diffstat (limited to 'spec/unit/parameter')
-rwxr-xr-xspec/unit/parameter/value_collection_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/parameter/value_collection_spec.rb b/spec/unit/parameter/value_collection_spec.rb
index 78c2c5263..cb82d1517 100755
--- a/spec/unit/parameter/value_collection_spec.rb
+++ b/spec/unit/parameter/value_collection_spec.rb
@@ -68,12 +68,12 @@ describe Puppet::Parameter::ValueCollection do
it "should correctly generate documentation for values" do
@collection.newvalues :foo
- @collection.doc.should be_include("Valid values are ``foo``")
+ @collection.doc.should be_include("Valid values are `foo`")
end
it "should correctly generate documentation for regexes" do
@collection.newvalues %r{\w+}
- @collection.doc.should be_include("Values can match ``/\\w+/``")
+ @collection.doc.should be_include("Values can match `/\\w+/`")
end
it "should be able to find the first matching value" do