|
@@ -0,0 +1,29 @@
|
|
|
+#
|
|
|
+# Cookbook:: apt_repositories
|
|
|
+# Spec:: _terraform
|
|
|
+#
|
|
|
+# Copyright:: 2022, The Authors, All Rights Reserved.
|
|
|
+
|
|
|
+require 'spec_helper'
|
|
|
+
|
|
|
+describe 'apt_repositories::_terraform' do
|
|
|
+ context 'When all attributes are default, on Ubuntu 20.04' do
|
|
|
+ # for a complete list of available platforms and versions see:
|
|
|
+ # https://github.com/chefspec/fauxhai/blob/main/PLATFORMS.md
|
|
|
+ platform 'ubuntu', '20.04'
|
|
|
+
|
|
|
+ it 'converges successfully' do
|
|
|
+ expect { chef_run }.to_not raise_error
|
|
|
+ end
|
|
|
+ end
|
|
|
+
|
|
|
+ context 'When all attributes are default, on CentOS 8' do
|
|
|
+ # for a complete list of available platforms and versions see:
|
|
|
+ # https://github.com/chefspec/fauxhai/blob/main/PLATFORMS.md
|
|
|
+ platform 'centos', '8'
|
|
|
+
|
|
|
+ it 'converges successfully' do
|
|
|
+ expect { chef_run }.to_not raise_error
|
|
|
+ end
|
|
|
+ end
|
|
|
+end
|