Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
testing
puppet-icinga2_testing
Commits
07d5b15d
Commit
07d5b15d
authored
Dec 09, 2016
by
Markus Frosch
📣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove old spec
parent
78e94a55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
40 deletions
+0
-40
spec/classes/icinga2_testing_spec.rb
spec/classes/icinga2_testing_spec.rb
+0
-40
No files found.
spec/classes/icinga2_testing_spec.rb
deleted
100644 → 0
View file @
78e94a55
require
'spec_helper'
describe
'icinga2_testing'
do
context
'on Debian with MySQL'
do
let
:facts
do
on_supported_os
[
'debian-8-x86_64'
].
merge
({
:concat_basedir
=>
'/tmp'
,
})
end
it
{
should
compile
.
with_all_deps
}
it
{
should
contain_class
(
'icinga2_testing'
)
}
it
{
should
contain_class
(
'icinga2_testing::repo'
)
}
it
{
should
contain_class
(
'mysql::server'
)
}
end
context
'on Debian with PostgreSQL'
do
let
:facts
do
on_supported_os
[
'debian-8-x86_64'
].
merge
({
:concat_basedir
=>
'/tmp'
,
})
end
let
:params
do
{
:ido_type
=>
'pgsql'
,
}
end
it
{
should
compile
.
with_all_deps
}
it
{
should
contain_class
(
'icinga2_testing'
)
}
it
{
should
contain_class
(
'icinga2_testing::repo'
)
}
it
{
should
contain_class
(
'postgresql::server'
)
}
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment