Files
2019-02-07 11:11:50 +00:00

18 lines
372 B
Ruby

require_relative '../../../../../lib/post_provision_test'
class ShellshockTest < PostProvisionTest
def initialize
self.module_name = 'shellshock'
self.module_path = get_module_path(__FILE__)
super
end
def test_module
super
test_local_command('correct /bin/bash version?','/bin/bash --version', 'version 4.1')
end
end
ShellshockTest.new.run