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_task_with_arguments.rb | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) (limited to 'test/rake/test_rake_task_with_arguments.rb') diff --git a/test/rake/test_rake_task_with_arguments.rb b/test/rake/test_rake_task_with_arguments.rb index cf4c157256..9d56ffbe8a 100644 --- a/test/rake/test_rake_task_with_arguments.rb +++ b/test/rake/test_rake_task_with_arguments.rb @@ -33,21 +33,11 @@ class TestRakeTaskWithArguments < Rake::TestCase assert_equal ["pre"], t.prerequisites end - def test_name_args_and_explicit_needs - ignore_deprecations do - t = task(:t, :x, :y, :needs => [:pre]) - assert_equal "t", t.name - assert_equal [:x, :y], t.arg_names - assert_equal ["pre"], t.prerequisites - end - end - - def test_illegal_keys_in_task_name_hash - ignore_deprecations do - assert_raises RuntimeError do - task(:t, :x, :y => 1, :needs => [:pre]) - end - end + def test_name_args_and_prereqs + t = task(:t, [:x, :y] => [:pre]) + assert_equal "t", t.name + assert_equal [:x, :y], t.arg_names + assert_equal ["pre"], t.prerequisites end def test_arg_list_is_empty_if_no_args_given @@ -91,7 +81,7 @@ class TestRakeTaskWithArguments < Rake::TestCase def test_arguments_are_passed_to_block t = task(:t, :a, :b) { |tt, args| - assert_equal( { :a => 1, :b => 2 }, args.to_hash ) + assert_equal({ :a => 1, :b => 2 }, args.to_hash) } t.invoke(1, 2) end @@ -131,7 +121,7 @@ class TestRakeTaskWithArguments < Rake::TestCase assert_equal "T", t.comment assert_equal "[a,b]", t.arg_description assert_equal "tt[a,b]", t.name_with_args - assert_equal [:a, :b],t.arg_names + assert_equal [:a, :b], t.arg_names end def test_named_args_are_passed_to_prereqs -- cgit v1.2.3