diff options
author | Joshua Peek <josh@joshpeek.com> | 2010-03-20 15:14:59 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2010-03-20 15:14:59 -0500 |
commit | 87db863fa212abd45be008c40ba1fb7ea26b6b60 (patch) | |
tree | c427c8b4309b8a889e566d5ffa876f512ebcad92 | |
parent | fcc6b12e77e2304a5b6be5c972749e2360dba62a (diff) | |
download | rails-87db863fa212abd45be008c40ba1fb7ea26b6b60.tar.gz rails-87db863fa212abd45be008c40ba1fb7ea26b6b60.tar.bz2 rails-87db863fa212abd45be008c40ba1fb7ea26b6b60.zip |
Remove invalid builtin tests since we aren't adding that dir to the
load path anymore
-rw-r--r-- | railties/test/application/paths_test.rb | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/railties/test/application/paths_test.rb b/railties/test/application/paths_test.rb index 511b8b629a..589e515d05 100644 --- a/railties/test/application/paths_test.rb +++ b/railties/test/application/paths_test.rb @@ -51,8 +51,6 @@ module ApplicationTests assert_path @paths.config.environment, "config", "environments", "development.rb" assert_equal root("app", "controllers"), @paths.app.controllers.to_a.first - assert_equal Pathname.new(File.dirname(__FILE__)).join("..", "..", "builtin", "rails_info").expand_path, - Pathname.new(@paths.app.controllers.to_a[1]).expand_path end test "booting up Rails yields a list of paths that are eager" do @@ -80,21 +78,5 @@ module ApplicationTests assert_not_in_load_path "tmp" assert_not_in_load_path "tmp", "cache" end - - test "controller paths include builtin in development mode" do - Rails.env.replace "development" - assert Rails::Application::Configuration.new("/").paths.app.controllers.paths.any? { |p| p =~ /builtin/ } - end - - test "controller paths does not have builtin_directories in test mode" do - Rails.env.replace "test" - assert !Rails::Application::Configuration.new("/").paths.app.controllers.paths.any? { |p| p =~ /builtin/ } - end - - test "controller paths does not have builtin_directories in production mode" do - Rails.env.replace "production" - assert !Rails::Application::Configuration.new("/").paths.app.controllers.paths.any? { |p| p =~ /builtin/ } - end - end end |