summaryrefslogtreecommitdiff
path: root/spec/support/vcsrepo_helpers.rb
diff options
context:
space:
mode:
authorBruce Williams <bruce@codefluency.com>2010-03-18 01:02:02 -0700
committerBruce Williams <bruce@codefluency.com>2010-03-18 01:02:02 -0700
commitaf86e9ba814926f9ee236aabc2ca905b5668af70 (patch)
treecc7d51046dbe0421b8f70bc1f1cca006a994fc2c /spec/support/vcsrepo_helpers.rb
parentdfb28337ce3c0743ed17ed21f5bab7e1692144bf (diff)
Subversion to use provider example group API for specs
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