Rearrange some asserts.
This commit is contained in:
parent
fa78fa3b9d
commit
cb84774231
1 changed files with 23 additions and 13 deletions
|
@ -223,6 +223,8 @@ class Path:
|
|||
raise NotEnoughSpace(path=self, reserve=reserve, free=free)
|
||||
return free
|
||||
|
||||
# ASSERTS
|
||||
|
||||
def assert_exists(self):
|
||||
if not self.exists:
|
||||
raise NotExists(self)
|
||||
|
@ -231,34 +233,42 @@ class Path:
|
|||
if self.exists:
|
||||
raise Exists(self)
|
||||
|
||||
def assert_not_file(self):
|
||||
if self.is_file:
|
||||
raise IsFile(self)
|
||||
|
||||
def assert_not_directory(self):
|
||||
if self.is_dir:
|
||||
raise IsDirectory(self)
|
||||
|
||||
assert_not_dir = assert_not_directory
|
||||
|
||||
def assert_not_link(self):
|
||||
if self.is_link:
|
||||
raise IsLink(self)
|
||||
#
|
||||
|
||||
def assert_is_file(self):
|
||||
if not self.is_file:
|
||||
raise NotFile(self)
|
||||
|
||||
def assert_not_file(self):
|
||||
if self.is_file:
|
||||
raise IsFile(self)
|
||||
|
||||
#
|
||||
|
||||
def assert_is_directory(self):
|
||||
if not self.is_dir:
|
||||
raise NotDirectory(self)
|
||||
|
||||
assert_is_dir = assert_is_directory
|
||||
|
||||
def assert_not_directory(self):
|
||||
if self.is_dir:
|
||||
raise IsDirectory(self)
|
||||
|
||||
assert_not_dir = assert_not_directory
|
||||
|
||||
#
|
||||
|
||||
def assert_is_link(self):
|
||||
if not self.is_link:
|
||||
raise NotLink(self)
|
||||
|
||||
def assert_not_link(self):
|
||||
if self.is_link:
|
||||
raise IsLink(self)
|
||||
|
||||
#
|
||||
|
||||
def add_extension(self, extension):
|
||||
extension = Extension(extension)
|
||||
if extension == '':
|
||||
|
|
Loading…
Reference in a new issue