mirror of
https://github.com/voxpupuli/puppet-hashi_stack.git
synced 2025-05-24 02:45:01 +01:00
18 lines
306 B
Ruby
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
|