Sha256: ab7a0f809ea8bdb0b31863f03a1de4e9eb9174869d6f8e1de9daa2951d6bb530
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
require 'spec_helper' describe "Plugin gem loading" do include ConfigSpecHelper def remove_plugin_from_list_of_required_files $".delete_if { |path| path =~ /nesta-plugin-test/ } # feel free to vomit end def remove_plugin_constants Nesta::Plugin::Test rescue NameError else Nesta::Plugin::Test.send(:remove_const, :VERSION) end before(:each) do stub_configuration @plugin_lib_path = File.expand_path( File.join(%w(fixtures nesta-plugin-test lib)), File.dirname(__FILE__)) $LOAD_PATH.unshift(@plugin_lib_path) Nesta::Plugin.loaded.clear end after(:each) do $LOAD_PATH.shift if $LOAD_PATH[0] == @plugin_lib_path remove_plugin_from_list_of_required_files remove_plugin_constants end it "should not occur prior to gem is required" do Nesta::Plugin.loaded.should be_empty end it "should record loaded plugins" do require 'nesta-plugin-test' Nesta::Plugin.loaded.size.should == 1 Nesta::Plugin.loaded.last.should == 'nesta-plugin-test' end it "should have loaded the plugin's module" do require 'nesta-plugin-test' Nesta::Plugin::Test::VERSION end it "should initialize the plugin" do require 'nesta-plugin-test' Nesta::Plugin.initialize_plugins Nesta::Page.should respond_to(:method_added_by_plugin) end end
Version data entries
6 entries across 6 versions & 1 rubygems