summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/audit_test/recipes/failed_specs.rb
blob: 3225d3983ef3b78c780773ddb81e4998a3a091f9 (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.

controls "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