blob: 9f3f7e9dae4b77d7a3ef89b50d453678922527d5 (
plain)
1
2
3
4
5
6
7
8
9
|
require File.expand_path('../helper', __FILE__)
require 'rake/tasklib'
class TestRakeTaskLib < Rake::TestCase
def test_paste
tl = Rake::TaskLib.new
assert_equal :ab, tl.paste(:a, :b)
end
end
|