aboutsummaryrefslogtreecommitdiff
path: root/spec/acceptance/tests/create_aliases_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/acceptance/tests/create_aliases_spec.rb')
-rw-r--r--spec/acceptance/tests/create_aliases_spec.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/spec/acceptance/tests/create_aliases_spec.rb b/spec/acceptance/tests/create_aliases_spec.rb
deleted file mode 100644
index a76263a..0000000
--- a/spec/acceptance/tests/create_aliases_spec.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-test_name 'host should create aliases'
-
-tag 'audit:low',
- 'audit:refactor', # Use block style `test_name`
- 'audit:acceptance' # Could be done at the integration (or unit) layer though
-# actual changing of resources could irreparably damage a
-# host running this, or require special permissions.
-
-agents.each do |agent|
- target = agent.tmpfile('host-create-aliases')
-
- step 'clean up the system for testing'
- on agent, "rm -f #{target}"
-
- step 'create the record'
- on(agent, puppet_resource('host', 'test', 'ensure=present',
- 'ip=127.0.0.7', "target=#{target}", 'host_aliases=alias'))
-
- step 'verify that the aliases were added'
- on(agent, "cat #{target} ; rm -f #{target}") do
- fail_test 'alias was missing' unless
- stdout =~ %r{^127\.0\.0\.7[[:space:]]+test[[:space:]]alias}
- end
-end