summaryrefslogtreecommitdiff
path: root/tests/file_line.pp
diff options
context:
space:
mode:
authorKen Barber <ken@bob.sh>2011-08-08 09:47:30 -0700
committerKen Barber <ken@bob.sh>2011-08-08 09:47:30 -0700
commitef4ef11ae0bad1aa2d7659aa7774df9e39146855 (patch)
tree7a705b349ab1f976328eef1fa7c3e7167a1bd769 /tests/file_line.pp
parent07d0eca31780bba76f2283ce83f944473ce8fe00 (diff)
parentf3c53e6f1943417a1690f5a976076f24277c6b06 (diff)
downloadpuppet-stdlib-ef4ef11ae0bad1aa2d7659aa7774df9e39146855.tar.gz
puppet-stdlib-ef4ef11ae0bad1aa2d7659aa7774df9e39146855.tar.bz2
Merge pull request #10 from jeffmccune/ticket/master/8792_rename_whole_line_to_file_line
(#8792) Rename whole_line type to file_line.
Diffstat (limited to 'tests/file_line.pp')
-rw-r--r--tests/file_line.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/file_line.pp b/tests/file_line.pp
new file mode 100644
index 0000000..eea693e
--- /dev/null
+++ b/tests/file_line.pp
@@ -0,0 +1,9 @@
+# This is a simple smoke test
+# of the file_line resource type.
+file { '/tmp/dansfile':
+ ensure => present
+}->
+file_line { 'dans_line':
+ line => 'dan is awesome',
+ path => '/tmp/dansfile',
+}