Method: FakeFS::Pathname#mkdir

Defined in:
lib/fakefs/pathname.rb

#mkdir(*args) ⇒ Object

See Dir.mkdir. Create the referenced directory.



949
950
951
# File 'lib/fakefs/pathname.rb', line 949

def mkdir(*args)
  Dir.mkdir(@path, *args)
end