Sha256: a9000c95fa65c4d3268259b1ff5e0f0d6bd6a15cfe43a7e4894f3ee2b930454f

Contents?: true

Size: 805 Bytes

Versions: 35

Compression:

Stored size: 805 Bytes

Contents

#! /usr/bin/env ruby
require 'spec_helper'

require 'puppet/reports'

processor = Puppet::Reports.report(:rrdgraph)

describe processor do
  include PuppetSpec::Files
  before do
    Puppet[:rrddir] = tmpdir('rrdgraph')
    Puppet.settings.use :master
  end

  after do
    FileUtils.rm_rf(Puppet[:rrddir])
  end

  it "should not error on 0.25.x report format" do
    report = YAML.load_file(File.join(PuppetSpec::FIXTURE_DIR, 'yaml/report0.25.x.yaml')).extend processor
    report.expects(:mkhtml)
    lambda{ report.process }.should_not raise_error
  end

  it "should not error on 2.6.x report format" do
    report = YAML.load_file(File.join(PuppetSpec::FIXTURE_DIR, 'yaml/report2.6.x.yaml')).extend processor
    report.expects(:mkhtml)
    lambda{ report.process }.should_not raise_error
  end
end

Version data entries

35 entries across 35 versions & 2 rubygems

Version Path
puppet-3.4.3 spec/unit/reports/rrdgraph_spec.rb
puppet-3.4.2 spec/unit/reports/rrdgraph_spec.rb
puppet-3.4.1 spec/unit/reports/rrdgraph_spec.rb
puppet-3.4.0 spec/unit/reports/rrdgraph_spec.rb
puppet-3.4.0.rc2 spec/unit/reports/rrdgraph_spec.rb
puppet-3.4.0.rc1 spec/unit/reports/rrdgraph_spec.rb
puppet-3.3.2 spec/unit/reports/rrdgraph_spec.rb
puppet-3.3.1 spec/unit/reports/rrdgraph_spec.rb
puppet-3.3.1.rc3 spec/unit/reports/rrdgraph_spec.rb
puppet-3.3.1.rc2 spec/unit/reports/rrdgraph_spec.rb
puppet-3.3.1.rc1 spec/unit/reports/rrdgraph_spec.rb
puppet-3.3.0 spec/unit/reports/rrdgraph_spec.rb
puppet-3.3.0.rc3 spec/unit/reports/rrdgraph_spec.rb
puppet-3.3.0.rc2 spec/unit/reports/rrdgraph_spec.rb
puppet-3.2.4 spec/unit/reports/rrdgraph_spec.rb
puppet-3.2.3 spec/unit/reports/rrdgraph_spec.rb
puppet-3.2.3.rc1 spec/unit/reports/rrdgraph_spec.rb
puppet-3.2.2 spec/unit/reports/rrdgraph_spec.rb
puppet-3.2.1 spec/unit/reports/rrdgraph_spec.rb
puppet-3.2.1.rc1 spec/unit/reports/rrdgraph_spec.rb