discourse/spec/components/discourse_plugin_spec.rb

52 lines
1.1 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'spec_helper'
2014-07-22 19:02:22 -04:00
require_dependency 'discourse_plugin'
2013-02-05 14:16:51 -05:00
describe DiscoursePlugin do
class TestPlugin < DiscoursePlugin
2013-02-12 23:45:10 -05:00
module SomeModule
end
module TestMixin
end
2013-02-05 14:16:51 -05:00
end
let(:registry) { mock }
let(:plugin) { TestPlugin.new(registry) }
2013-02-12 23:45:10 -05:00
describe ".mixins" do
it "finds its mixins" do
TestPlugin.mixins.should == [TestPlugin::TestMixin]
end
end
2013-02-05 14:16:51 -05:00
it "delegates adding js to the registry" do
registry.expects(:register_js).with('test.js', any_parameters)
plugin.register_js('test.js')
end
it "delegates adding css to the registry" do
registry.expects(:register_css).with('test.css')
plugin.register_css('test.css')
end
it "delegates creating archetypes" do
registry.expects(:register_archetype).with('banana', oh: 'no!')
plugin.register_archetype('banana', oh: 'no!')
end
context 'registering for callbacks' do
before do
plugin.stubs(:hello)
plugin.listen_for(:hello)
end
it "calls the method when it is triggered" do
plugin.expects(:hello).with('there')
DiscourseEvent.trigger(:hello, 'there')
end
end
end