summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorTheo Chatzimichos <tampakrap@gmail.com>2016-08-16 17:05:47 +0200
committerRaphaƫl Pinson <github+aem1eeshi1@raphink.net>2016-08-16 17:05:47 +0200
commit57283b23aafb47608501ae0ac68c1defa7f4065c (patch)
treee54f3b577d4d44f6780de38cb83d38770290a097 /spec
parente496de727fafbbfbe2cf72c9f1528a719ec0e50f (diff)
Add target param for the unit file (#10)
This is useful in case the Unit file is a symlink to another one
Diffstat (limited to 'spec')
-rw-r--r--spec/defines/unit_file_spec.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/defines/unit_file_spec.rb b/spec/defines/unit_file_spec.rb
index 0eebbd3..88a0122 100644
--- a/spec/defines/unit_file_spec.rb
+++ b/spec/defines/unit_file_spec.rb
@@ -33,6 +33,7 @@ describe 'systemd::unit_file' do
:path => '/usr/lib/systemd/system',
:content => 'some-content',
:source => 'some-source',
+ :target => 'some-target',
} }
it 'creates the unit file' do
@@ -40,6 +41,7 @@ describe 'systemd::unit_file' do
'ensure' => 'absent',
'content' => 'some-content',
'source' => 'some-source',
+ 'target' => 'some-target',
})
end