Skip to content

Commit 67bc181

Browse files
authored
Merge pull request #56 from bastelfreak/ci
Enable acceptance tests
2 parents 4056108 + ed2be91 commit 67bc181

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ concurrency:
1818
jobs:
1919
puppet:
2020
name: Puppet
21-
uses: voxpupuli/gha-puppet/.github/workflows/basic.yml@v2
21+
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v2

spec/acceptance/init_spec.rb

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# frozen_string_literal: true
2+
3+
require 'spec_helper_acceptance'
4+
5+
describe 'example' do
6+
describe 'with defaults' do
7+
it_behaves_like 'an idempotent resource' do
8+
let(:manifest) do
9+
<<-PUPPET
10+
include example
11+
PUPPET
12+
end
13+
end
14+
end
15+
end

0 commit comments

Comments
 (0)