Sha256: 075e8d8a68fb6989e15b6543dfd9fba80209400bb79c439f689fd2bfd5b71264

Contents?: true

Size: 1.12 KB

Versions: 12

Compression:

Stored size: 1.12 KB

Contents

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

describe Puppet::Status do
  it "should implement find" do
    Puppet::Status.indirection.find( :default ).should be_is_a(Puppet::Status)
    Puppet::Status.indirection.find( :default ).status["is_alive"].should == true
  end

  it "should default to is_alive is true" do
    Puppet::Status.new.status["is_alive"].should == true
  end

  it "should return a pson hash" do
    Puppet::Status.new.status.to_pson.should == '{"is_alive":true}'
  end

  it "should render to a pson hash" do
    PSON::pretty_generate(Puppet::Status.new).should =~ /"is_alive":\s*true/
  end

  it "should accept a hash from pson" do
    status = Puppet::Status.new( { "is_alive" => false } )
    status.status.should == { "is_alive" => false }
  end

  it "should have a name" do
    Puppet::Status.new.name
  end

  it "should allow a name to be set" do
    Puppet::Status.new.name = "status"
  end

  it "can do a round-trip serialization via YAML" do
    status = Puppet::Status.new
    new_status = Puppet::Status.convert_from('yaml', status.render('yaml'))
    new_status.should equal_attributes_of(status)
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
puppet-3.3.2 spec/unit/status_spec.rb
puppet-3.3.1 spec/unit/status_spec.rb
puppet-3.3.1.rc3 spec/unit/status_spec.rb
puppet-3.3.1.rc2 spec/unit/status_spec.rb
puppet-3.3.1.rc1 spec/unit/status_spec.rb
puppet-3.3.0 spec/unit/status_spec.rb
puppet-3.3.0.rc3 spec/unit/status_spec.rb
puppet-3.3.0.rc2 spec/unit/status_spec.rb
puppet-3.2.4 spec/unit/status_spec.rb
puppet-3.2.3 spec/unit/status_spec.rb
puppet-3.2.3.rc1 spec/unit/status_spec.rb
puppet-3.2.2 spec/unit/status_spec.rb