summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2011-08-04 17:58:05 -0700
committerJeff McCune <jeff@puppetlabs.com>2011-08-04 17:58:05 -0700
commitee1081571e5926c6ac90158160b7a0e241cfa54c (patch)
tree05f203aed2a006f040e0fa23e6876817663b3f92 /tests
parent0466e1bc6fc1864501ef380d0ca10eda98ee24dc (diff)
parent4540949d96608c6ff7eed07d53294337446fbead (diff)
downloadpuppet-stdlib-ee1081571e5926c6ac90158160b7a0e241cfa54c.tar.gz
puppet-stdlib-ee1081571e5926c6ac90158160b7a0e241cfa54c.tar.bz2
Merge branch 'refactor/master/8665_whole_line'
* refactor/master/8665_whole_line: (#8665) Change type from append_line to whole_line
Diffstat (limited to 'tests')
-rw-r--r--tests/whole_line.pp (renamed from tests/append_line.pp)4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/append_line.pp b/tests/whole_line.pp
index f50a833..1302989 100644
--- a/tests/append_line.pp
+++ b/tests/whole_line.pp
@@ -1,7 +1,7 @@
file { '/tmp/dansfile':
ensure => present
}->
-append_line { 'dans_line':
+whole_line { 'dans_line':
line => 'dan is awesome',
- #path => '/tmp/dansfile',
+ path => '/tmp/dansfile',
}