mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rake: updated to rake code to rake-0.8.7 source code base.
* lib/rake/loaders/makefile.rb (Rake::MakefileLoader#process_line): respace dependencies too. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a0f667c33e
commit
719b0f8e30
71 changed files with 6679 additions and 72 deletions
91
test/rake/test_top_level_functions.rb
Normal file
91
test/rake/test_top_level_functions.rb
Normal file
|
@ -0,0 +1,91 @@
|
|||
require 'test/unit'
|
||||
require_relative 'capture_stdout'
|
||||
require 'rake'
|
||||
|
||||
class TestTopLevelFunctions < Test::Unit::TestCase
|
||||
include CaptureStdout
|
||||
|
||||
def setup
|
||||
super
|
||||
@app = Rake.application
|
||||
Rake.application = @mock = Object.new
|
||||
end
|
||||
|
||||
def teardown
|
||||
Rake.application = @app
|
||||
super
|
||||
end
|
||||
|
||||
def defmock(sym, &block)
|
||||
class << @mock; self; end.class_eval do
|
||||
define_method(sym, block)
|
||||
end
|
||||
end
|
||||
|
||||
def test_namespace
|
||||
args = []
|
||||
defmock(:in_namespace) {|a, *| args << a}
|
||||
namespace "xyz" do end
|
||||
assert_equal(["xyz"], args)
|
||||
end
|
||||
|
||||
def test_import
|
||||
args = []
|
||||
defmock(:add_import) {|a| args << a}
|
||||
import('x', 'y', 'z')
|
||||
assert_equal(['x', 'y', 'z'], args)
|
||||
end
|
||||
|
||||
def test_when_writing
|
||||
out = capture_stdout do
|
||||
when_writing("NOTWRITING") do
|
||||
puts "WRITING"
|
||||
end
|
||||
end
|
||||
assert_equal "WRITING\n", out
|
||||
end
|
||||
|
||||
def test_when_not_writing
|
||||
RakeFileUtils.nowrite_flag = true
|
||||
out = capture_stdout do
|
||||
when_writing("NOTWRITING") do
|
||||
puts "WRITING"
|
||||
end
|
||||
end
|
||||
assert_equal "DRYRUN: NOTWRITING\n", out
|
||||
ensure
|
||||
RakeFileUtils.nowrite_flag = false
|
||||
end
|
||||
|
||||
def test_missing_constants_task
|
||||
args = []
|
||||
defmock(:const_warning) {|a| args << a}
|
||||
Object.const_missing(:Task)
|
||||
assert_equal([:Task], args)
|
||||
end
|
||||
|
||||
def test_missing_constants_file_task
|
||||
args = []
|
||||
defmock(:const_warning) {|a| args << a}
|
||||
Object.const_missing(:FileTask)
|
||||
assert_equal([:FileTask], args)
|
||||
end
|
||||
|
||||
def test_missing_constants_file_creation_task
|
||||
args = []
|
||||
defmock(:const_warning) {|a| args << a}
|
||||
Object.const_missing(:FileCreationTask)
|
||||
assert_equal([:FileCreationTask], args)
|
||||
end
|
||||
|
||||
def test_missing_constants_rake_app
|
||||
args = []
|
||||
defmock(:const_warning) {|a| args << a}
|
||||
Object.const_missing(:RakeApp)
|
||||
assert_equal([:RakeApp], args)
|
||||
end
|
||||
|
||||
def test_missing_other_constant
|
||||
assert_raise(NameError) do Object.const_missing(:Xyz) end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue