aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/initializers/load_path_test.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-11-11 23:36:02 -0800
committerYves Senn <yves.senn@gmail.com>2013-11-11 23:36:02 -0800
commit98991a98398feae3988be72563c80f808a74ebeb (patch)
treece1a8f741855a3d7e0499a5f14637c0838561667 /railties/test/application/initializers/load_path_test.rb
parentbd004eccfa1b7e6c8e4f1273da94477d75b9515f (diff)
parentec3134739c6bf7cf6482feb46155293e2b09c45b (diff)
downloadrails-98991a98398feae3988be72563c80f808a74ebeb.tar.gz
rails-98991a98398feae3988be72563c80f808a74ebeb.tar.bz2
rails-98991a98398feae3988be72563c80f808a74ebeb.zip
Merge pull request #12695 from mikepack/allow_pathnames
Allow Pathnames to be added to eager load paths
Diffstat (limited to 'railties/test/application/initializers/load_path_test.rb')
-rw-r--r--railties/test/application/initializers/load_path_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/railties/test/application/initializers/load_path_test.rb b/railties/test/application/initializers/load_path_test.rb
index b36628ee37..cd05956356 100644
--- a/railties/test/application/initializers/load_path_test.rb
+++ b/railties/test/application/initializers/load_path_test.rb
@@ -71,6 +71,20 @@ module ApplicationTests
assert Zoo
end
+ test "eager loading accepts Pathnames" do
+ app_file "lib/foo.rb", <<-RUBY
+ module Foo; end
+ RUBY
+
+ add_to_config <<-RUBY
+ config.eager_load = true
+ config.eager_load_paths << Pathname.new("#{app_path}/lib")
+ RUBY
+
+ require "#{app_path}/config/environment"
+ assert Foo
+ end
+
test "load environment with global" do
$initialize_test_set_from_env = nil
app_file "config/environments/development.rb", <<-RUBY