Puppet Class: role::expect
- Defined in:
- puppet/modules/role/manifests/expect.pp
Overview
Class: role::expect
The Expect extension provides functionality to make and run assertions for Lua modules, that is the Scribunto extension. Such assertions can be complex, yet easily reused.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'puppet/modules/role/manifests/expect.pp', line 5
class role::expect {
include ::role::scribunto
include ::role::luacollections
mediawiki::extension { 'Expect':
remote => 'https://github.com/jeblad/Expect.git',
require => Mediawiki::Extension['Scribunto'],
composer => true,
}
mediawiki::import::text { 'VagrantRoleExpect':
source => 'puppet:///modules/role/expect/VagrantRoleExpect.wiki',
}
}
|