Support a url field in plugin metadata

This commit is contained in:
Robin Ward
2015-02-06 18:08:57 -05:00
parent 3d7b534564
commit 7dea65122e
8 changed files with 21 additions and 4 deletions

View File

@ -9,6 +9,7 @@ describe Plugin::Metadata do
# about: about: my plugin
# version: 0.1
# authors: Frank Zappa
# url: http://discourse.org
some_ruby
TEXT
@ -17,6 +18,7 @@ TEXT
expect(metadata.about).to eq("about: my plugin")
expect(metadata.version).to eq("0.1")
expect(metadata.authors).to eq("Frank Zappa")
expect(metadata.url).to eq("http://discourse.org")
end
end