summaryrefslogtreecommitdiff
path: root/spec/support/vcsrepo_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/vcsrepo_helpers.rb')
-rw-r--r--spec/support/vcsrepo_helpers.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/support/vcsrepo_helpers.rb b/spec/support/vcsrepo_helpers.rb
deleted file mode 100644
index f631db0d..0000000
--- a/spec/support/vcsrepo_helpers.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-module VcsrepoHelpers
-
- def expects_chdir(path = resource.value(:path))
- Dir.expects(:chdir).with(path).at_least_once.yields
- end
-
- def expects_mkdir(path = resource.value(:path))
- Dir.expects(:mkdir).with(path).at_least_once
- end
-
-end