summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/audit_test/recipes/with_include_recipe.rb
blob: f795f7786a69361bae553756793588e03e2b5785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# Cookbook Name:: audit_test
# Recipe:: with_include_recipe
#
# Copyright (c) 2014 The Authors, All Rights Reserved.

include_recipe "audit_test::serverspec_collision"

control_group "basic example" do
  it "should pass" do
    expect(2 - 2).to eq(0)
  end
end

include_recipe "audit_test::serverspec_collision"
include_recipe "audit_test::default"