Class: Serverspec::Type::WindowsRegistryKey

Inherits:
Base
  • Object
show all
Defined in:
lib/serverspec/type/windows_registry_key.rb

Instance Attribute Summary

Attributes inherited from Base

#name

Instance Method Summary collapse

Methods inherited from Base

#initialize, #inspect, #to_ary, #to_s

Constructor Details

This class inherits a constructor from Serverspec::Type::Base

Instance Method Details

#exists?Boolean

Returns:

  • (Boolean)


3
4
5
# File 'lib/serverspec/type/windows_registry_key.rb', line 3

def exists?
  @runner.check_registry_key_exists(@name)
end

#has_property?(property_name, property_type = :type_string) ⇒ Boolean

Returns:

  • (Boolean)


7
8
9
# File 'lib/serverspec/type/windows_registry_key.rb', line 7

def has_property?(property_name, property_type = :type_string)
  @runner.check_registry_key_has_property(@name, {:name => property_name, :type => property_type})
end

#has_property_value?(property_name, property_type, value) ⇒ Boolean

Returns:

  • (Boolean)


15
16
17
# File 'lib/serverspec/type/windows_registry_key.rb', line 15

def has_property_value?(property_name, property_type, value)
  @runner.check_registry_key_has_value(@name, {:name => property_name, :type => property_type, :value => value})
end

#has_value?(value) ⇒ Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/serverspec/type/windows_registry_key.rb', line 11

def has_value?(value)
  @runner.check_registry_key_has_value(@name, {:name => '', :type => :type_string, :value => value})
end