Module: RSpec::Rails::RoutingExampleGroup::ClassMethods Private

Defined in:
lib/rspec/rails/example/routing_example_group.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Class-level DSL for route specs.

Instance Method Summary collapse

Instance Method Details

#routes(&blk) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Specifies the routeset that will be used for the example group. This is most useful when testing Rails engines.

Examples:

describe MyEngine::PostsController do
  routes { MyEngine::Engine.routes }

  it "routes posts#index" do
    expect(:get => "/posts").to
      route_to(:controller => "my_engine/posts", :action => "index")
  end
end


27
28
29
30
31
# File 'lib/rspec/rails/example/routing_example_group.rb', line 27

def routes(&blk)
  before do
    self.routes = blk.call
  end
end