diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-03 20:45:25 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-03 20:45:25 +0000 |
commit | 0c07125397428a0c1ca9a4a4d0176f45d8be0979 (patch) | |
tree | 1b390027a563b47a26341b439288b81473c6cdcf /test/data/snippets/failmissingexecpath.pp | |
parent | 8d7ec14836809f1433e645c3069691d2f6c70e52 (diff) | |
download | puppet-0c07125397428a0c1ca9a4a4d0176f45d8be0979.tar.gz puppet-0c07125397428a0c1ca9a4a4d0176f45d8be0979.tar.xz puppet-0c07125397428a0c1ca9a4a4d0176f45d8be0979.zip |
Fixing #615 (subclasses with similar names) by getting rid of the class "type" and "fqname", and instead using "classname" everywhere. You should no longer see unqualified class/definition names anywhere. Also, rewriting how snippet tests work, to avoid creating all of the files, since the point was the parsing tests, not functional tests.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2458 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test/data/snippets/failmissingexecpath.pp')
-rw-r--r-- | test/data/snippets/failmissingexecpath.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/data/snippets/failmissingexecpath.pp b/test/data/snippets/failmissingexecpath.pp index aae1a09fa..b03875547 100644 --- a/test/data/snippets/failmissingexecpath.pp +++ b/test/data/snippets/failmissingexecpath.pp @@ -2,7 +2,8 @@ define distloc($path) { file { "/tmp/exectesting1": ensure => file } - exec { "touch $path": + exec { "exectest": + command => "touch $path", subscribe => File["/tmp/exectesting1"], refreshonly => true } |