Module: InfraTestingHelpers
- Defined in:
- lib/infra_testing_helpers.rb,
lib/infra_testing_helpers/box.rb,
lib/infra_testing_helpers/site.rb,
lib/infra_testing_helpers/helper.rb
Defined Under Namespace
Modules: Helper
Classes: Box, PuppetApplyFailed, Site
Class Method Summary
collapse
Class Method Details
.module_path ⇒ Object
27
28
29
|
# File 'lib/infra_testing_helpers.rb', line 27
def self.module_path
@settings[:module_path]
end
|
.module_path=(path) ⇒ Object
31
32
33
|
# File 'lib/infra_testing_helpers.rb', line 31
def self.module_path=(path)
@settings[:module_path] = path
end
|
.site_pp ⇒ Object
19
20
21
|
# File 'lib/infra_testing_helpers.rb', line 19
def self.site_pp
@settings[:site_pp]
end
|
.site_pp=(puppet_code) ⇒ Object
23
24
25
|
# File 'lib/infra_testing_helpers.rb', line 23
def self.site_pp=(puppet_code)
@settings[:site_pp] = puppet_code
end
|
.vagrant_shared_folder ⇒ Object
11
12
13
|
# File 'lib/infra_testing_helpers.rb', line 11
def self.vagrant_shared_folder
@settings[:vagrant_shared_folder]
end
|
.vagrant_shared_folder=(mount_point) ⇒ Object
15
16
17
|
# File 'lib/infra_testing_helpers.rb', line 15
def self.vagrant_shared_folder=(mount_point)
@settings[:vagrant_shared_folder] = mount_point
end
|