Sha256: f95a73445acdc20682ee5a5ad6cd6ba946a71145d327b59998a9cda030b363f1
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
require File.expand_path(__FILE__).sub(%r(/test/.*), '/test/test_helper.rb') require File.expand_path(__FILE__).sub(%r(.*/test/), '').sub(/test_(.*)\.rb/,'\1') class TestResourceUtil < Test::Unit::TestCase def test_identify path = Path.setup('share/data/somedir/somepath').find assert_equal 'share/data/somedir/somepath', Scout.identify(path) end def test_identify_with_subdir m = Module.new m.extend Resource m.subdir = 'test/subdir' path = m.root['share/data/somedir/somepath'].find assert_equal 'share/data/somedir/somepath', m.identify(path) end def test_relocate TmpFile.with_file do |dir| Path.setup dir path_base = Path.setup("basedir").someother.file path_base.path_maps[:subdir1] = File.join(dir, 'subdir1', '{PATH}') path_base.path_maps[:subdir2] = File.join(dir, 'subdir2', '{PATH}') path1 = path_base.find(:subdir1) path2 = path_base.find(:subdir2) Open.write(path1, "TEST") Open.mv path1, path2 assert_equal path2, Resource.relocate(path1) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
scout-gear-9.1.0 | test/scout/resource/test_util.rb |