Sort files to test to make load order platform independent. Fix the clash this exposes. Closees #11081 [tpope]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8880 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Michael Koziarski 2008-02-16 03:08:05 +00:00
parent 86cb0a61fb
commit 1d5ea1857f
2 changed files with 18 additions and 18 deletions

View File

@ -26,9 +26,9 @@ task :test => [:test_action_pack, :test_active_record_integration]
Rake::TestTask.new(:test_action_pack) { |t|
t.libs << "test"
# make sure we include the controller tests (c*) first as on some systems
# make sure we include the tests in alphabetical order as on some systems
# this will not happen automatically and the tests (as a whole) will error
t.test_files=Dir.glob( "test/c*/**/*_test.rb" ) + Dir.glob( "test/[ft]*/*_test.rb" )
t.test_files=Dir.glob( "test/[cft]*/**/*_test.rb" ).sort
# t.pattern = 'test/*/*_test.rb'
t.verbose = true
}

View File

@ -10,16 +10,16 @@ class Article
end
end
class Comment < Article
class Response < Article
def post_id; 1 end
end
class Tag < Article
def comment_id; 1 end
def response_id; 1 end
end
# TODO: test nested models
class Comment::Nested < Comment; end
class Response::Nested < Response; end
uses_mocha 'polymorphic URL helpers' do
class PolymorphicRoutesTest < Test::Unit::TestCase
@ -28,7 +28,7 @@ uses_mocha 'polymorphic URL helpers' do
def setup
@article = Article.new
@comment = Comment.new
@response = Response.new
end
def test_with_record
@ -73,14 +73,14 @@ uses_mocha 'polymorphic URL helpers' do
end
def test_with_nested
@comment.save
expects(:article_comment_url).with(@article, @comment)
polymorphic_url([@article, @comment])
@response.save
expects(:article_response_url).with(@article, @response)
polymorphic_url([@article, @response])
end
def test_with_nested_unsaved
expects(:article_comments_url).with(@article)
polymorphic_url([@article, @comment])
expects(:article_responses_url).with(@article)
polymorphic_url([@article, @response])
end
def test_new_with_array_and_namespace
@ -97,20 +97,20 @@ uses_mocha 'polymorphic URL helpers' do
@article.save
expects(:admin_article_url).with(@article)
polymorphic_url([:admin, @article])
expects(:admin_article_comments_url).with(@article)
polymorphic_url([:admin, @article, @comment])
expects(:admin_article_responses_url).with(@article)
polymorphic_url([:admin, @article, @response])
end
def test_nested_with_array_and_namespace
@comment.save
expects(:admin_article_comment_url).with(@article, @comment)
polymorphic_url([:admin, @article, @comment])
@response.save
expects(:admin_article_response_url).with(@article, @response)
polymorphic_url([:admin, @article, @response])
# a ridiculously long named route tests correct ordering of namespaces and nesting:
@tag = Tag.new
@tag.save
expects(:site_admin_article_comment_tag_url).with(@article, @comment, @tag)
polymorphic_url([:site, :admin, @article, @comment, @tag])
expects(:site_admin_article_response_tag_url).with(@article, @response, @tag)
polymorphic_url([:site, :admin, @article, @response, @tag])
end
# TODO: Needs to be updated to correctly know about whether the object is in a hash or not