From 497b6af8818f656fdbca9ed2470c1c16ae5ff1cd Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Tue, 7 Sep 2010 22:59:09 +0200 Subject: Set default asset_path only for engine --- railties/test/railties/engine_test.rb | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'railties/test') diff --git a/railties/test/railties/engine_test.rb b/railties/test/railties/engine_test.rb index 370f9342e3..6fc166e054 100644 --- a/railties/test/railties/engine_test.rb +++ b/railties/test/railties/engine_test.rb @@ -281,6 +281,34 @@ module RailtiesTest assert_equal expected, stripped_body end + test "default application's asset_path" do + @plugin.write "config/routes.rb", <<-RUBY + Bukkits::Engine.routes.draw do + match "/foo" => "foo#index" + end + RUBY + + @plugin.write "app/controllers/foo_controller.rb", <<-RUBY + class FooController < ActionController::Base + def index + end + end + RUBY + + @plugin.write "app/views/foo/index.html.erb", <<-RUBY + <%= compute_public_path("/foo", "") %> + RUBY + + boot_rails + + env = Rack::MockRequest.env_for("/foo") + response = Bukkits::Engine.call(env) + stripped_body = response[2].body.strip + + expected = "/bukkits/foo" + assert_equal expected, stripped_body + end + test "engine's files are served via ActionDispatch::Static" do add_to_config "config.serve_static_assets = true" -- cgit v1.2.3