aboutsummaryrefslogtreecommitdiffstats
path: root/test/rake/test_tasklib.rb
blob: a113d80f780a71d1c68c67de0aabda4f33999047 (plain)
1
2
3
4
5
6
7
8
9
10
require 'test/unit'
require 'rake/tasklib'


class TestTaskLib < Test::Unit::TestCase
  def test_paste
    tl = Rake::TaskLib.new
    assert_equal :ab, tl.paste(:a, :b)
  end
end