Fix NotImplemented error calls

This commit is contained in:
Brandon Robins
2017-12-17 20:52:22 -06:00
parent c2ffbf6375
commit 3b1aabbf53

View File

@@ -11,67 +11,67 @@ module Calligraphy
end end
def ancestor_exist? def ancestor_exist?
raise NotImplemented raise NotImplementedError
end end
def can_copy?(options) def can_copy?(options)
raise NotImplemented raise NotImplementedError
end end
def collection? def collection?
raise NotImplemented raise NotImplementedError
end end
def copy(options) def copy(options)
raise NotImplemented raise NotImplementedError
end end
def create_collection def create_collection
raise NotImplemented raise NotImplementedError
end end
def delete_collection def delete_collection
raise NotImplemented raise NotImplementedError
end end
def etag def etag
raise NotImplemented raise NotImplementedError
end end
def exists? def exists?
raise NotImplemented raise NotImplementedError
end end
def lock(nodes, depth='infinity') def lock(nodes, depth='infinity')
raise NotImplemented raise NotImplementedError
end end
def lock_is_exclusive? def lock_is_exclusive?
raise NotImplemented raise NotImplementedError
end end
def lock_tokens def lock_tokens
raise NotImplemented raise NotImplementedError
end end
def locked? def locked?
raise NotImplemented raise NotImplementedError
end end
def locked_to_user?(headers=nil) def locked_to_user?(headers=nil)
raise NotImplemented raise NotImplementedError
end end
def propfind(nodes) def propfind(nodes)
raise NotImplemented raise NotImplementedError
end end
def proppatch(nodes) def proppatch(nodes)
raise NotImplemented raise NotImplementedError
end end
def read def read
raise NotImplemented raise NotImplementedError
end end
def readable? def readable?
@@ -79,15 +79,15 @@ module Calligraphy
end end
def refresh_lock def refresh_lock
raise NotImplemented raise NotImplementedError
end end
def unlock(token) def unlock(token)
raise NotImplemented raise NotImplementedError
end end
def write(contents=@request_body.to_s) def write(contents=@request_body.to_s)
raise NotImplemented raise NotImplementedError
end end
end end
end end