summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/audit_test/recipes/failed_specs.rb
blob: c5c2c32f0adaa7eece40795579fec6a4603ba136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Cookbook Name:: audit_test
# Recipe:: failed_specs
#
# Copyright (c) 2014 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