summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Keiser <jkeiser@opscode.com>2014-04-23 15:46:02 -0700
committerJohn Keiser <jkeiser@opscode.com>2014-04-23 15:46:02 -0700
commit6ee9dca54d7ad3e498d90ca1d25683844949b3b8 (patch)
tree6f8249f39b1220dcab14c7ec0af1259762c8e1b4
parentc0c95d690e1bb7c17c2d141b4937a36c2072d800 (diff)
downloadchef-zero-6ee9dca54d7ad3e498d90ca1d25683844949b3b8.tar.gz
Fix copypasta
-rw-r--r--lib/chef_zero/data_store/interface_v1.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/chef_zero/data_store/interface_v1.rb b/lib/chef_zero/data_store/interface_v1.rb
index 7568fdc..acdb788 100644
--- a/lib/chef_zero/data_store/interface_v1.rb
+++ b/lib/chef_zero/data_store/interface_v1.rb
@@ -14,35 +14,35 @@ module ChefZero
end
def create(path, name, data, *options)
- raise "create_dir not implemented by class #{self.class}"
+ raise "create not implemented by class #{self.class}"
end
def get(path, request=nil)
- raise "create_dir not implemented by class #{self.class}"
+ raise "get not implemented by class #{self.class}"
end
def set(path, data, *options)
- raise "create_dir not implemented by class #{self.class}"
+ raise "set not implemented by class #{self.class}"
end
def delete(path)
- raise "create_dir not implemented by class #{self.class}"
+ raise "delete not implemented by class #{self.class}"
end
def delete_dir(path, *options)
- raise "create_dir not implemented by class #{self.class}"
+ raise "delete_dir not implemented by class #{self.class}"
end
def list(path)
- raise "create_dir not implemented by class #{self.class}"
+ raise "list not implemented by class #{self.class}"
end
def exists?(path)
- raise "create_dir not implemented by class #{self.class}"
+ raise "exists? not implemented by class #{self.class}"
end
def exists_dir?(path)
- raise "create_dir not implemented by class #{self.class}"
+ raise "exists_dir? not implemented by class #{self.class}"
end
end
end