Sha256: 421b41a80366dec20696d64c4fc5177c279d13239b04c4b943dfd86759968c23
Contents?: true
Size: 985 Bytes
Versions: 6
Compression:
Stored size: 985 Bytes
Contents
#!/usr/bin/env ruby require 'test/unit' require 'rake' require 'test/rake_test_setup' # ==================================================================== class TestRequire < Test::Unit::TestCase include TestMethods def test_can_load_rake_library app = Rake::Application.new assert app.instance_eval { rake_require("test2", ['test/data/rakelib'], []) } end def test_wont_reload_rake_library app = Rake::Application.new paths = ['test/data/rakelib'] loaded_files = [] app.rake_require("test2", paths, loaded_files) assert ! app.instance_eval { rake_require("test2", paths, loaded_files) } end def test_throws_error_if_library_not_found app = Rake::Application.new ex = assert_exception(LoadError) { assert app.instance_eval { rake_require("testx", ['test/data/rakelib'], []) } } assert_match(/(can *not|can't)\s+find/i, ex.message) assert_match(/testx/, ex.message) end end
Version data entries
6 entries across 6 versions & 1 rubygems