aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/paths_test.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-01-22 16:24:44 +0100
committerJosé Valim <jose.valim@gmail.com>2010-01-22 16:24:44 +0100
commit4ae79367277954bf6616151b03cbe0660808f9bd (patch)
treed34be77dce755b395e22a87df1b42861a0120344 /railties/test/paths_test.rb
parent02c5137eadbb3530033d919b7aebeb6f4f389b83 (diff)
downloadrails-4ae79367277954bf6616151b03cbe0660808f9bd.tar.gz
rails-4ae79367277954bf6616151b03cbe0660808f9bd.tar.bz2
rails-4ae79367277954bf6616151b03cbe0660808f9bd.zip
Got tests working once again.
Diffstat (limited to 'railties/test/paths_test.rb')
-rw-r--r--railties/test/paths_test.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/railties/test/paths_test.rb b/railties/test/paths_test.rb
index d60d6177f6..001282bb0d 100644
--- a/railties/test/paths_test.rb
+++ b/railties/test/paths_test.rb
@@ -193,12 +193,7 @@ class PathsTest < ActiveSupport::TestCase
assert_equal 2, @root.eager_load.size
end
- test "a path should have a glob that defaults to **/*.rb" do
- @root.app = "/app"
- assert_equal "**/*.rb", @root.app.glob
- end
-
- test "it should be possible to override a path's default glob" do
+ test "it should be possible to add a path's default glob" do
@root.app = "/app"
@root.app.glob = "*.rb"
assert_equal "*.rb", @root.app.glob