Sha256: b4f48168821d3c2e501cf971d3a93969b3245ab289c0f7c9aa5b82967d6fee21

Contents?: true

Size: 1.36 KB

Versions: 3

Compression:

Stored size: 1.36 KB

Contents

require File.expand_path("spec_helper", File.dirname(__FILE__))

describe "plugins" do
  it "should be able to override class, instance, response, and request methods, and execute configure method" do
    c = Module.new do
      self::ClassMethods = Module.new do
        def fix(str)
          opts[:prefix] + str.strip
        end
      end
      self::InstanceMethods = Module.new do
        def fix(str)
          super("a" + str)
        end
      end
      self::RequestMethods = Module.new do
        def hello(&block)
          on 'hello', &block
        end
      end
      self::ResponseMethods = Module.new do
        def foobar
          "Default   "
        end
      end

      def self.load_dependencies(mod, prefix)
        mod.send(:include, Module.new do
          def fix(str)
            self.class.fix(str)
          end
        end)
      end

      def self.configure(mod, prefix)
        mod.opts[:prefix] = prefix
      end
    end

    app(:bare) do
      plugin c, "Foo "

      route do |r|
        r.hello do
          fix(response.foobar)
        end
      end
    end

    body('/hello').should == 'Foo aDefault'
  end

  it "should support registering plugins and loading them by symbol" do
    Roda::RodaPlugins.register_plugin(:foo, Module.new{module self::InstanceMethods; def a; '1' end end})
    app(:foo) do
      a
    end

    body.should == '1'
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
roda-cj-0.9.2 spec/plugin_spec.rb
roda-cj-0.9.1 spec/plugin_spec.rb
roda-0.9.0 spec/plugin_spec.rb