Sha256: 27d071b7187a30b9f12d31979dd40e580c14b4739924bb509b458f0583d3a008
Contents?: true
Size: 692 Bytes
Versions: 7
Compression:
Stored size: 692 Bytes
Contents
module Context module Steps module InspecSteps def install_inspector(context_suite) system("inspec habitat profile setup #{context_suite.habitat_name}") end def create_inspector(context_suite) system("inspec habitat profile create #{context_suite.habitat_name}") end def upload_inspector(context_suite) system("inspec habitat profile upload #{context_suite.habitat_name}") end def inspec_habitat(context_suite) system("inspec check #{context_suite.habitat_name}") end def exec_inspec_habitat(context_suite) system("inspec exec #{context_suite.habitat_name}") end end end end
Version data entries
7 entries across 7 versions & 1 rubygems