We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21d9d35 commit 0b313beCopy full SHA for 0b313be
TODO.md
@@ -1,3 +1,4 @@
1
# TODO
2
- Fix the helpers and clean up the where it injects into DSL.
3
- Add custom resource (and multiple providers) for maintaining the Consul client.
4
+- Use the InSpec instead of ServerSpec.
test/integration/default/serverspec/localhost/default_spec.rb
@@ -10,6 +10,16 @@
10
it { should be_linked_to '/srv/consul/current/consul' }
11
end
12
13
+describe group('consul') do
14
+ it { should exist }
15
+end
16
+
17
+describe user('consul') do
18
19
+ it { should belong_to_group('consul') }
20
+ it { should have_login_shell('/bin/bash') }
21
22
23
describe service('consul') do
24
it { should be_enabled }
25
it { should be_running }
0 commit comments