Sha256: 628ea70437acc74d2d21463c1460d62215accd436db70fffb16f335a5b0be2bb

Contents?: true

Size: 1.09 KB

Versions: 6

Compression:

Stored size: 1.09 KB

Contents

__DIR__ = File.dirname(__FILE__)
require File.expand_path(File.join(__DIR__, "..", "..", "spec_helper"))

require File.expand_path(File.join(__DIR__, "controllers", "filters"))
require File.expand_path(File.join(__DIR__, "controllers", "cousins"))
require File.expand_path(File.join(__DIR__, "controllers", "render"))
require File.expand_path(File.join(__DIR__, "controllers", "partial"))
require File.expand_path(File.join(__DIR__, "controllers", "display"))
require File.expand_path(File.join(__DIR__, "controllers", "helpers"))

module Merb::Test::Behaviors
  include Merb::Test::RequestHelper
  
  def dispatch_should_make_body(klass, body, action = :index, opts = {}, env = {}, &blk)
    klass = Merb::Test::Fixtures::Abstract.const_get(klass)
    if opts.key?(:presets)
      controller = klass.new
      opts[:presets].each { |attr, value| controller.send(attr, value)}
      controller._dispatch(action.to_s)
    else
      controller = dispatch_to(klass, action, opts, env, &blk)
    end
    controller.body.should == body
  end
end

Spec::Runner.configure do |config|
  config.include Merb::Test::Behaviors
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
merb-core-1.1.3 spec/public/abstract_controller/spec_helper.rb
merb-core-1.1.2 spec/public/abstract_controller/spec_helper.rb
merb-core-1.1.1 spec/public/abstract_controller/spec_helper.rb
merb-core-1.1.0 spec/public/abstract_controller/spec_helper.rb
merb-core-1.1.0.rc1 spec/public/abstract_controller/spec_helper.rb
merb-core-1.1.0.pre spec/public/abstract_controller/spec_helper.rb