/tools/Ruby/lib/ruby/gems/1.8/gems/rake-0.9.2/test/test_rake_task_manager_argument_resolution.rb
http://github.com/agross/netopenspace · Ruby · 36 lines · 27 code · 9 blank · 0 comment · 0 complexity · ff1b5443afb6d0745bf525ae8f845114 MD5 · raw file
- require File.expand_path('../helper', __FILE__)
- class TestRakeTaskManagerArgumentResolution < Rake::TestCase
- def setup
- super
- Rake.application.options.ignore_deprecate = true
- end
- def teardown
- Rake.application.options.ignore_deprecate = false
- super
- end
- def test_good_arg_patterns
- assert_equal [:t, [], []], task(:t)
- assert_equal [:t, [], [:x]], task(:t => :x)
- assert_equal [:t, [], [:x, :y]], task(:t => [:x, :y])
- assert_equal [:t, [:a, :b], []], task(:t, :a, :b)
- assert_equal [:t, [], [:x]], task(:t, :needs => :x)
- assert_equal [:t, [:a, :b], [:x]], task(:t, :a, :b, :needs => :x)
- assert_equal [:t, [:a, :b], [:x, :y]], task(:t, :a, :b, :needs => [:x, :y])
- assert_equal [:t, [:a, :b], []], task(:t, [:a, :b])
- assert_equal [:t, [:a, :b], [:x]], task(:t, [:a, :b] => :x)
- assert_equal [:t, [:a, :b], [:x, :y]], task(:t, [:a, :b] => [:x, :y])
- end
- def task(*args)
- tm = Rake::TestCase::TaskManager.new
- tm.resolve_args(args)
- end
- end