diff options
| author | Matt Robinson <matt@puppetlabs.com> | 2011-04-08 14:13:48 -0700 |
|---|---|---|
| committer | Matt Robinson <matt@puppetlabs.com> | 2011-04-08 14:14:01 -0700 |
| commit | d43f85063a0e40fdb5d02fb63d82639f2ca278f5 (patch) | |
| tree | 97dcf60cbbfd7f5305436a6695a88889a536b45b | |
| parent | 101c6ede6185aec5833787c0d7bb0ce1e96bb656 (diff) | |
| download | puppet-d43f85063a0e40fdb5d02fb63d82639f2ca278f5.tar.gz puppet-d43f85063a0e40fdb5d02fb63d82639f2ca278f5.tar.xz puppet-d43f85063a0e40fdb5d02fb63d82639f2ca278f5.zip | |
maint: Ruby < 1.8.7 knows size but not count
Reviewd-by: Nick Lewis
| -rwxr-xr-x | spec/unit/application/inspect_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/unit/application/inspect_spec.rb b/spec/unit/application/inspect_spec.rb index d334a87ee..a9a793117 100755 --- a/spec/unit/application/inspect_spec.rb +++ b/spec/unit/application/inspect_spec.rb @@ -246,9 +246,9 @@ describe Puppet::Application::Inspect do @inspect.run_command @report.status.should == "failed" - @report.logs.select{|log| log.message =~ /Could not inspect/}.count.should == 1 - @report.resource_statuses.count.should == 1 - @report.resource_statuses['Stub_type[foo]'].events.count.should == 1 + @report.logs.select{|log| log.message =~ /Could not inspect/}.size.should == 1 + @report.resource_statuses.size.should == 1 + @report.resource_statuses['Stub_type[foo]'].events.size.should == 1 event = @report.resource_statuses['Stub_type[foo]'].events.first event.property.should == "content" @@ -265,7 +265,7 @@ describe Puppet::Application::Inspect do @inspect.run_command - @report.resource_statuses.count.should == 2 + @report.resource_statuses.size.should == 2 @report.resource_statuses.keys.should =~ ['Stub_type[foo]', 'Stub_type[bar]'] end end |
