Skip to content

Commit

Permalink
Updated tests to use scope(:module => :engine_name) instead of namesp…
Browse files Browse the repository at this point in the history
…ace and updated mounted engine tests to actually use the namespacing
  • Loading branch information
drogus committed Sep 3, 2010
1 parent b1c66f0 commit 16dcaf8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 23 deletions.
2 changes: 1 addition & 1 deletion railties/test/railties/engine_test.rb
Expand Up @@ -390,7 +390,7 @@ def to_param

@plugin.write "config/routes.rb", <<-RUBY
Bukkits::Engine.routes.draw do
namespace(:bukkits, :path => nil, :shallow_path => nil, :as => nil) do
scope(:module => :bukkits) do
match "/foo" => "foo#index", :as => "foo"
match "/foo/show" => "foo#show"
match "/from_app" => "foo#from_app"
Expand Down
49 changes: 27 additions & 22 deletions railties/test/railties/mounted_engine_test.rb
Expand Up @@ -19,7 +19,7 @@ def setup
match "/engine_route_in_view" => "application_generating#engine_route_in_view"
match "/url_for_engine_route" => "application_generating#url_for_engine_route"
scope "/:user", :user => "anonymous" do
mount Blog::Engine => "/blog", :as => "blog_engine"
mount Blog::Engine => "/blog"
end
root :to => 'main#index'
end
Expand All @@ -28,50 +28,55 @@ def setup
@plugin.write "lib/blog.rb", <<-RUBY
module Blog
class Engine < ::Rails::Engine
namespace(Blog)
end
end
RUBY

@plugin.write "config/routes.rb", <<-RUBY
Blog::Engine.routes.draw do
resources :posts do
get :generate_application_route
get :application_route_in_view
scope(:module => :blog) do
resources :posts do
get :generate_application_route
get :application_route_in_view
end
end
end
RUBY

@plugin.write "app/controllers/posts_controller.rb", <<-RUBY
class PostsController < ActionController::Base
def index
render :text => blog_engine.post_path(1)
end
def generate_application_route
path = app.url_for(:controller => "main",
:action => "index",
:only_path => true)
render :text => path
end
def application_route_in_view
render :inline => "<%= app.root_path %>"
@plugin.write "app/controllers/blog/posts_controller.rb", <<-RUBY
module Blog
class PostsController < ActionController::Base
def index
render :text => blog.post_path(1)
end
def generate_application_route
path = app.url_for(:controller => "/main",
:action => "index",
:only_path => true)
render :text => path
end
def application_route_in_view
render :inline => "<%= app.root_path %>"
end
end
end
RUBY

app_file "app/controllers/application_generating_controller.rb", <<-RUBY
class ApplicationGeneratingController < ActionController::Base
def engine_route
render :text => blog_engine.posts_path
render :text => blog.posts_path
end
def engine_route_in_view
render :inline => "<%= blog_engine.posts_path %>"
render :inline => "<%= blog.posts_path %>"
end
def url_for_engine_route
render :text => blog_engine.url_for(:controller => "posts", :action => "index", :user => "john", :only_path => true)
render :text => blog.url_for(:controller => "blog/posts", :action => "index", :user => "john", :only_path => true)
end
end
RUBY
Expand Down

0 comments on commit 16dcaf8

Please sign in to comment.