2009-10-02 15:07:55 -04:00
|
|
|
require 'test/unit'
|
|
|
|
require 'rake'
|
|
|
|
|
|
|
|
# ====================================================================
|
2009-10-03 10:47:46 -04:00
|
|
|
class Rake::TestRequire < Test::Unit::TestCase
|
2009-10-02 15:07:55 -04:00
|
|
|
RakeLibDir = File.dirname(__FILE__) + '/data/rakelib'
|
|
|
|
|
|
|
|
def test_can_load_rake_library
|
|
|
|
app = Rake::Application.new
|
|
|
|
assert app.instance_eval {
|
|
|
|
rake_require("test1", [RakeLibDir], [])
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_wont_reload_rake_library
|
|
|
|
app = Rake::Application.new
|
|
|
|
assert ! app.instance_eval {
|
|
|
|
rake_require("test2", [RakeLibDir], ['test2'])
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_throws_error_if_library_not_found
|
|
|
|
app = Rake::Application.new
|
|
|
|
ex = assert_raise(LoadError) {
|
|
|
|
assert app.instance_eval {
|
|
|
|
rake_require("testx", [RakeLibDir], [])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert_match(/x/, ex.message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|