language-puppet-1.4.1: tests/Parser/lexer/componentmetaparams.pp
file { "/tmp/component1":
ensure => file
}
define thing {
file { $name: ensure => file }
}
thing { "/tmp/component2":
require => File["/tmp/component1"]
}
file { "/tmp/component1":
ensure => file
}
define thing {
file { $name: ensure => file }
}
thing { "/tmp/component2":
require => File["/tmp/component1"]
}