Sha256: eb0ae01f9c38aae4f3934a38a10e0abf4f51fae000449468dedc39a684becc0d

Contents?: true

Size: 489 Bytes

Versions: 234

Compression:

Stored size: 489 Bytes

Contents

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

describe Puppet::Type.type(:selmodule), "when validating attributes" do
  [:name, :selmoduledir, :selmodulepath].each do |param|
    it "should have a #{param} parameter" do
      expect(Puppet::Type.type(:selmodule).attrtype(param)).to eq(:param)
    end
  end

  [:ensure, :syncversion].each do |param|
    it "should have a #{param} property" do
      expect(Puppet::Type.type(:selmodule).attrtype(param)).to eq(:property)
    end
  end
end

Version data entries

234 entries across 234 versions & 1 rubygems

Version Path
puppet-5.5.12 spec/unit/type/selmodule_spec.rb
puppet-5.5.12-x86-mingw32 spec/unit/type/selmodule_spec.rb
puppet-5.5.12-x64-mingw32 spec/unit/type/selmodule_spec.rb
puppet-5.5.12-universal-darwin spec/unit/type/selmodule_spec.rb
puppet-5.5.10 spec/unit/type/selmodule_spec.rb
puppet-5.5.10-x86-mingw32 spec/unit/type/selmodule_spec.rb
puppet-5.5.10-x64-mingw32 spec/unit/type/selmodule_spec.rb
puppet-5.5.10-universal-darwin spec/unit/type/selmodule_spec.rb
puppet-5.5.8 spec/unit/type/selmodule_spec.rb
puppet-5.5.8-x86-mingw32 spec/unit/type/selmodule_spec.rb
puppet-5.5.8-x64-mingw32 spec/unit/type/selmodule_spec.rb
puppet-5.5.8-universal-darwin spec/unit/type/selmodule_spec.rb
puppet-5.5.7 spec/unit/type/selmodule_spec.rb
puppet-5.5.7-x86-mingw32 spec/unit/type/selmodule_spec.rb
puppet-5.5.7-x64-mingw32 spec/unit/type/selmodule_spec.rb
puppet-5.5.7-universal-darwin spec/unit/type/selmodule_spec.rb
puppet-5.5.6 spec/unit/type/selmodule_spec.rb
puppet-5.5.6-x86-mingw32 spec/unit/type/selmodule_spec.rb
puppet-5.5.6-x64-mingw32 spec/unit/type/selmodule_spec.rb
puppet-5.5.6-universal-darwin spec/unit/type/selmodule_spec.rb