From 9cadc95b28da1cf6ca8f802292d12cc96a4f2c2d Mon Sep 17 00:00:00 2001 From: drbrain Date: Fri, 11 Oct 2013 21:35:01 +0000 Subject: * NEWS (with all sufficient information): * lib/rake: Update to rake 10.1.0 * bin/rake: ditto. * test/rake: ditto. * NEWS: Update NEWS to include rake 10.1.0 and links to release notes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43264 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rake/test_rake_definitions.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'test/rake/test_rake_definitions.rb') diff --git a/test/rake/test_rake_definitions.rb b/test/rake/test_rake_definitions.rb index 839c40419e..4b2de9d1d2 100644 --- a/test/rake/test_rake_definitions.rb +++ b/test/rake/test_rake_definitions.rb @@ -34,12 +34,12 @@ class TestRakeDefinitions < Rake::TestCase t = Task[n1] assert Task === t, "Should be a Task" assert_equal n1.to_s, t.name - assert_equal [n2.to_s], t.prerequisites.collect{|n| n.to_s} + assert_equal [n2.to_s], t.prerequisites.map { |n| n.to_s } t.invoke t2 = Task[n2] assert_equal FileList[], t2.prerequisites t3 = Task[n3] - assert_equal [n1.to_s, n2.to_s], t3.prerequisites.collect{|n|n.to_s} + assert_equal [n1.to_s, n2.to_s], t3.prerequisites.map { |n| n.to_s } end def test_incremental_definitions @@ -77,4 +77,3 @@ class TestRakeDefinitions < Rake::TestCase end end - -- cgit v1.2.3