diff options
| author | James Turnbull <james@lovedthanlost.net> | 2010-08-12 15:33:14 +1000 |
|---|---|---|
| committer | James Turnbull <james@lovedthanlost.net> | 2010-08-12 15:35:19 +1000 |
| commit | 252c9b84f79307e5caa50b50e093ad493993622d (patch) | |
| tree | abce1a16ae21d4f9b73ef17d086af39b885e2806 /spec/unit/parameter | |
| parent | 1157e8dbaf310cca6f56dda3fa9f100b458662ee (diff) | |
| download | puppet-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-x | spec/unit/parameter/value_collection_spec.rb | 4 |
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 |
