MCPcopy Create free account
hub / github.com/apache/arrow / test_create_dir

Method test_create_dir

c_glib/test/file-system-tests.rb:63–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61 end
62
63 def test_create_dir
64 @fs.create_dir("AB/CD/EF", true) # recursive
65 @fs.create_dir("AB/GH", false) # non-recursive
66 assert_equal({
67 "AB" => :dir,
68 "AB/CD" => :dir,
69 "AB/CD/EF" => :dir,
70 "AB/GH" => :dir
71 },
72 all_entries)
73 end
74
75 def test_create_dir_with_nonexistent_parent
76 assert_raise(Arrow::Error::Io) do

Callers

nothing calls this directly

Calls 1

create_dirMethod · 0.45

Tested by

no test coverage detected