summaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2007-01-30 18:43:39 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2007-01-30 18:43:39 +0000
commit0a62369718e3299990ef36ad657e22f7032446c9 (patch)
tree692b53b061d1b73f566ac59dc76ff409d8838dab /test/data
parent788a74e80c6af40ca2a0d162c5445a0aa0ba866a (diff)
downloadpuppet-0a62369718e3299990ef36ad657e22f7032446c9.tar.gz
puppet-0a62369718e3299990ef36ad657e22f7032446c9.tar.xz
puppet-0a62369718e3299990ef36ad657e22f7032446c9.zip
Partially fixing #460, take 3 -- fully-qualified classes can now be included.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2128 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test/data')
-rw-r--r--test/data/snippets/fqparents.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/data/snippets/fqparents.pp b/test/data/snippets/fqparents.pp
index ae588d9cf..40fb93344 100644
--- a/test/data/snippets/fqparents.pp
+++ b/test/data/snippets/fqparents.pp
@@ -4,8 +4,8 @@ class base {
}
}
-class two inherits base::one {
+class two::three inherits base::one {
file { "/tmp/fqparent2": ensure => file }
}
-include two
+include two::three