summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rwxr-xr-xspec/unit/parser/collector.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/unit/parser/collector.rb b/spec/unit/parser/collector.rb
index c0e5f2298..450176f30 100755
--- a/spec/unit/parser/collector.rb
+++ b/spec/unit/parser/collector.rb
@@ -243,19 +243,6 @@ describe Puppet::Parser::Collector, "when collecting exported resources" do
@collector.evaluate.should == [one, two]
end
- it "should mark all returned resources as not exported" do
- stub_rails(true)
-
- one = stub 'one', :type => "Mytype", :virtual? => true, :exported? => true
-
- one.expects(:exported=).with(false)
- one.stubs(:virtual=)
-
- @compile.expects(:resources).returns([one])
-
- @collector.evaluate.should == [one]
- end
-
it "should mark all returned resources as not virtual" do
stub_rails(true)