Skip to content

Commit

Permalink
Merge pull request #6482 from waseem/fix_build_4008
Browse files Browse the repository at this point in the history
Fixes build 4008.1
  • Loading branch information
josevalim committed May 25, 2012
2 parents 641ab7c + baa3363 commit ec8c4b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions railties/test/paths_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def setup
test "creating a root level path" do
@root.add "app"
assert_equal ["/foo/bar/app"], @root["app"].to_a
assert_equal [Pathname.new("/foo/bar/app")], @root["app"].paths
assert_equal ["/foo/bar/app"], @root["app"].paths
end

test "creating a root level path with options" do
Expand Down Expand Up @@ -192,7 +192,7 @@ def setup
@root["app"] = "/app"
@root["app"].glob = "*.rb"
assert_equal "*.rb", @root["app"].glob
assert_equal [Pathname.new("/app")], @root["app"].paths
assert_equal ["/foo/bar/app"], @root["app"].paths
end

test "it should be possible to override a path's default glob without assignment" do
Expand Down

0 comments on commit ec8c4b5

Please sign in to comment.