summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Kearney <bkearney@redhat.com>2009-06-10 07:31:05 -0400
committerJames Turnbull <james@lovedthanlost.net>2009-06-10 21:50:27 +1000
commite142ca656cb5a44005edc9c9d0c767664768362e (patch)
tree3cd04a4c20b96c56cb94059746a07b7a2f6b0e7c
parentd8ee6cfaedf8846f65ec0fe32c5badcf569b20c7 (diff)
downloadpuppet-e142ca656cb5a44005edc9c9d0c767664768362e.tar.gz
puppet-e142ca656cb5a44005edc9c9d0c767664768362e.tar.xz
puppet-e142ca656cb5a44005edc9c9d0c767664768362e.zip
Removed a unit test which tested munging which is no longer done in the type
-rw-r--r--spec/unit/type/augeas.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/unit/type/augeas.rb b/spec/unit/type/augeas.rb
index ff34d57ca..5276d2cf2 100644
--- a/spec/unit/type/augeas.rb
+++ b/spec/unit/type/augeas.rb
@@ -88,13 +88,6 @@ describe augeas do
end
describe "provider interaction" do
- it "should munge the changes" do
- provider = stub("provider", :parse_commands => "Jar Jar Binks")
- resource = stub('resource', :resource => nil, :provider => provider, :line => nil, :file => nil)
- changes = augeas.attrclass(:changes).new(:resource => resource)
- changes.value= "Testing 123"
- changes.value.should == "Jar Jar Binks"
- end
it "should return 0 if it does not need to run" do
provider = stub("provider", :need_to_run? => false)