Class: Soltius::TerraformModule::SpecHelperIntegration

Inherits:
Object
  • Object
show all
Defined in:
lib/soltius/terraform_module/spec_helper_integration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path = '') {|_self| ... } ⇒ SpecHelperIntegration

Returns a new instance of SpecHelperIntegration.

Yields:

  • (_self)

Yield Parameters:



10
11
12
13
14
15
# File 'lib/soltius/terraform_module/spec_helper_integration.rb', line 10

def initialize(path = '')
  @tfvars_file  = path

  yield self if block_given?
  setup
end

Instance Attribute Details

#tfvarsObject (readonly)

Returns the value of attribute tfvars.



7
8
9
# File 'lib/soltius/terraform_module/spec_helper_integration.rb', line 7

def tfvars
  @tfvars
end

#tfvars_fileObject

Returns the value of attribute tfvars_file.



8
9
10
# File 'lib/soltius/terraform_module/spec_helper_integration.rb', line 8

def tfvars_file
  @tfvars_file
end