-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing up style, updating test harness
- Loading branch information
Sean OMeara
committed
Dec 20, 2013
1 parent
c6d1cfd
commit 8bcafd0
Showing
6 changed files
with
20 additions
and
18 deletions.
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 |
---|---|---|
@@ -1,16 +1,23 @@ | ||
AllCops: | ||
Excludes: | ||
- vendor/** | ||
|
||
AlignParameters: | ||
Enabled: false | ||
Documentation: | ||
Enabled: false | ||
|
||
Encoding: | ||
Enabled: false | ||
HashSyntax: | ||
Enabled: false | ||
|
||
LineLength: | ||
Enabled: false | ||
Max: 200 | ||
|
||
HashSyntax: | ||
EnforcedStyle: hash_rockets | ||
|
||
MethodLength: | ||
Max: 30 | ||
|
||
CyclomaticComplexity: | ||
Max: 16 | ||
|
||
ParameterLists: | ||
Enabled: false | ||
|
||
ClassLength: | ||
Max: 117 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,2 @@ | ||
require 'berkshelf' | ||
require 'chefspec' | ||
|
||
Berkshelf.ui.mute do | ||
berksfile = Berkshelf::Berksfile.from_file('Berksfile') | ||
berksfile.install(path: 'vendor/cookbooks') | ||
end | ||
require 'chefspec/berkshelf' |
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 |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
# | ||
|
||
module LvmTest | ||
# Helper definitions for lvmtest | ||
module Helper | ||
# Creates given loop devices | ||
# | ||
|
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