mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9cadc95b28
* 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
71 lines
1.2 KiB
Ruby
71 lines
1.2 KiB
Ruby
require File.expand_path('../helper', __FILE__)
|
|
|
|
class TestRakeTopLevelFunctions < Rake::TestCase
|
|
|
|
def setup
|
|
super
|
|
|
|
@app = Object.new
|
|
|
|
def @app.called
|
|
@called
|
|
end
|
|
|
|
def @app.method_missing(*a, &b)
|
|
@called ||= []
|
|
@called << [a, b]
|
|
nil
|
|
end
|
|
|
|
Rake.application = @app
|
|
end
|
|
|
|
def test_namespace
|
|
block = proc do end
|
|
|
|
namespace("xyz", &block)
|
|
|
|
expected = [
|
|
[[:in_namespace, 'xyz'], block]
|
|
]
|
|
|
|
assert_equal expected, @app.called
|
|
end
|
|
|
|
def test_import
|
|
import('x', 'y', 'z')
|
|
|
|
expected = [
|
|
[[:add_import, 'x'], nil],
|
|
[[:add_import, 'y'], nil],
|
|
[[:add_import, 'z'], nil],
|
|
]
|
|
|
|
assert_equal expected, @app.called
|
|
end
|
|
|
|
def test_when_writing
|
|
out, = capture_io do
|
|
when_writing("NOTWRITING") do
|
|
puts "WRITING"
|
|
end
|
|
end
|
|
assert_equal "WRITING\n", out
|
|
end
|
|
|
|
def test_when_not_writing
|
|
Rake::FileUtilsExt.nowrite_flag = true
|
|
_, err = capture_io do
|
|
when_writing("NOTWRITING") do
|
|
puts "WRITING"
|
|
end
|
|
end
|
|
assert_equal "DRYRUN: NOTWRITING\n", err
|
|
ensure
|
|
Rake::FileUtilsExt.nowrite_flag = false
|
|
end
|
|
|
|
def test_missing_other_constant
|
|
assert_raises(NameError) do Object.const_missing(:Xyz) end
|
|
end
|
|
end
|