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.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/support/vcsrepo_helpers.rb b/spec/support/vcsrepo_helpers.rb
new file mode 100644
index 0000000..e0b9beb
--- /dev/null
+++ b/spec/support/vcsrepo_helpers.rb
@@ -0,0 +1,12 @@
+module VcsrepoHelpers
+
+ def expects_chdir
+ Dir.expects(:chdir).with(resource.value(:path)).at_least_once.yields
+ end
+
+ def expects_mkdir
+ Dir.expects(:mkdir).with(resource.value(:path)).at_least_once
+ end
+
+
+end