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

control_group "basic control group" do
  control "basic math" do
    # Can not write a good control :(
    it "should pass" do
      expect(2 - 0).to eq(0)
    end
  end
end