summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Chilton <jmchilton@gmail.com>2012-05-02 12:35:16 -0500
committerJohn Chilton <jmchilton@gmail.com>2012-05-02 12:35:16 -0500
commitd69a27f3bb5111822e1065f385a53b6ee99cb16a (patch)
tree53f8606d51180e09eabf01ff967bc80226e7f2e1
parent462b1d69bbc5d6c171dcee02a3d88d304acd630e (diff)
Fix failing hg provider spec caused by refactoring in commit f1120f2d9b121097b7e77709328144af330d0b34
-rw-r--r--spec/unit/puppet/provider/vcsrepo/hg_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/puppet/provider/vcsrepo/hg_spec.rb b/spec/unit/puppet/provider/vcsrepo/hg_spec.rb
index 53e5596..6f32d44 100644
--- a/spec/unit/puppet/provider/vcsrepo/hg_spec.rb
+++ b/spec/unit/puppet/provider/vcsrepo/hg_spec.rb
@@ -74,7 +74,7 @@ describe_provider :vcsrepo, :hg, :resource => {:path => '/tmp/vcsrepo'} do
context "when it is the same as the current SHA", :resource => {:revision => '34e6012c783a'} do
it "should return it" do
- provider.expects(:hg).with('tags').never
+ provider.expects(:hg).with('tags').returns(fixture(:hg_tags))
provider.revision.should == resource.value(:revision)
end
end