mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
213ce33af2
Moved middleware config into authenticators
23 lines
498 B
Ruby
23 lines
498 B
Ruby
require 'spec_helper'
|
|
require_dependency 'plugin/metadata'
|
|
|
|
describe Plugin::Metadata do
|
|
context "parse" do
|
|
it "correctly parses plugin info" do
|
|
metadata = Plugin::Metadata.parse <<TEXT
|
|
# name: plugin-name
|
|
# about: about: my plugin
|
|
# version: 0.1
|
|
# authors: Frank Zappa
|
|
|
|
some_ruby
|
|
TEXT
|
|
|
|
metadata.name.should == "plugin-name"
|
|
metadata.about.should == "about: my plugin"
|
|
metadata.version.should == "0.1"
|
|
metadata.authors.should == "Frank Zappa"
|
|
end
|
|
end
|
|
|
|
end
|