Initial commit

This commit is contained in:
2014-11-23 19:45:01 +00:00
commit 3b1b23732e
19 changed files with 625 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
require 'spec_helper'
describe 'dokuwiki::install' do
context 'with defaults for all parameters' do
it { should contain_package('www-apps/dokuwiki') }
end
context 'on Gentoo' do
let(:params) {{
:use_webapp_config => true,
:version => '123'
}}
it { should contain_webapp_config('dokuwiki-123') }
end
end