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


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