puppet-hashi_stack/spec/defines/config_file_spec.rb
Bram Vogelaar 9ef92100a9
feat: initial pass on hcl config
Signed-off-by: Bram Vogelaar <bram@attachmentgenie.com>
2023-12-28 22:30:05 +01:00

18 lines
306 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe 'hashi_stack::config_file' do
let(:title) { 'namevar' }
let(:params) do
{}
end
on_supported_os.each do |os, os_facts|
context "on #{os}" do
let(:facts) { os_facts }
it { is_expected.to compile }
end
end
end