This repository has been archived by the owner on Sep 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FC030: Cookbook contains breakpoints, refs #36.
- Loading branch information
Andrew Crump
committed
Jun 3, 2012
1 parent
585681c
commit b76f8eb
Showing
5 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Feature: Check for debugger breakpoints | ||
|
||
In order to avoid halting a converge | ||
As a developer | ||
I want to identify debugger breakpoints that have not been removed | ||
|
||
Scenario Outline: Debugger breakpoints | ||
Given a cookbook with a <component> that <includes> a breakpoint | ||
When I check the cookbook | ||
Then the debugger breakpoint warning 030 should be <show_warning> against the <component> | ||
|
||
Examples: | ||
| component | includes | show_warning | | ||
| library | does not include | not shown | | ||
| library | includes | shown | | ||
| metadata | does not include | not shown | | ||
| metadata | includes | shown | | ||
| provider | does not include | not shown | | ||
| provider | includes | shown | | ||
| recipe | does not include | not shown | | ||
| recipe | includes | shown | | ||
| resource | does not include | not shown | | ||
| resource | includes | shown | | ||
| template | does not include | not shown | | ||
| template | includes | shown | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters