Sha256: 2d0f822afa5c01b409166b81c67a25d469ac36d7cc8c791dadb89af3b01786af
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
require 'helper' include FunWith::Files class TestFilePath < Test::Unit::TestCase context "testing basics" do setup do end should "initialize kindly" do f1 = FilePath.new( "/", "bin", "bash" ) f2 = "/".fwf_filepath( "bin", "bash" ) assert f1.exist? assert f2.exist? end should "go up/down when asked" do f1 = FilePath.new( "/", "home", "users", "monkeylips", "ask_for_floyd" ) f2 = FilePath.new( "/", "home", "users" ) root = FilePath.new( "/" ) assert_equal f2, f1.up.up assert_equal root, f1.up.up.up.up.up.up.up #invoking up didn't change original assert_match /ask_for_floyd/, f1.to_s assert_equal f1, f2.down( "monkeylips" ).down( "ask_for_floyd" ) assert_equal f1, f2.down( "monkeylips", "ask_for_floyd" ) #invoking down didn't change original assert_no_match /ask_for_floyd/, f2.to_s end end context "test glob" do setup do @data_dir = FunWith::Files.root( 'test', 'data' ) end should "glob items in test/data directory" do files = @data_dir.glob(:all) assert_equal 3, files.length files = @data_dir.glob(:all, :flags => [File::FNM_DOTMATCH]) assert_equal 7, files.length end should "glob with case insensitive flag" do files = @data_dir.glob("grep1.txt") assert_equal 1, files.length # TODO: Case sensitive search? # files = @data_dir.glob("grep1.txt", :flags => [File::FNM_CASEFOLD]) # assert_equal 2, files.length # files = @data_dir.glob("grep1.txt", :sensitive => true) # assert_equal 2, files.length end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fun_with_files-0.0.1 | ./test/test_file_path.rb |