diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-11-09 16:27:18 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-11-09 16:27:40 -0200 |
commit | 9a389cc70e2b8369dd89b55d8bf6801f34028f0b (patch) | |
tree | f47cd38dc7e47c4d4692ce68a79e17a56f4749da /railties | |
parent | db1d5f40714a47c58c13ff7d9643e8a0dec6bef8 (diff) | |
download | rails-9a389cc70e2b8369dd89b55d8bf6801f34028f0b.tar.gz rails-9a389cc70e2b8369dd89b55d8bf6801f34028f0b.tar.bz2 rails-9a389cc70e2b8369dd89b55d8bf6801f34028f0b.zip |
Revert "Add test case to assets eager load"
This reverts commit 552a3e145373cabe25a78d8d7cba2ceaabd9ecc5.
Diffstat (limited to 'railties')
-rw-r--r-- | railties/test/application/paths_test.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/railties/test/application/paths_test.rb b/railties/test/application/paths_test.rb index 176476f129..964cff48cd 100644 --- a/railties/test/application/paths_test.rb +++ b/railties/test/application/paths_test.rb @@ -61,8 +61,6 @@ module ApplicationTests assert eager_load.include?(root("app/controllers")) assert eager_load.include?(root("app/helpers")) assert eager_load.include?(root("app/models")) - assert !eager_load.include?(root("app/views")), "expected to not be in the eager_load_path" - assert !eager_load.include?(root("app/assets")), "expected to not be in the eager_load_path" end test "environments has a glob equal to the current environment" do @@ -77,7 +75,6 @@ module ApplicationTests assert_in_load_path "vendor" assert_not_in_load_path "app", "views" - assert_not_in_load_path "app", "assets" assert_not_in_load_path "config" assert_not_in_load_path "config", "locales" assert_not_in_load_path "config", "environments" |