-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
223 additions
and
185 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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"alignment.consecutive.assignments":false, | ||
"alignment.consecutive.params":false, | ||
"alignment.consecutive.properties":false, | ||
"array.empty_padding":false, | ||
"array.multiline.element_count":4, | ||
"array.multiline.leading_comma":false, | ||
"array.multiline.leading_comma.padding":true, | ||
"array.multiline.min_length":40, | ||
"array.padding":true, | ||
"binary_operators.padding":true, | ||
"brackets.padding":true, | ||
"comment.asterisks":"align", | ||
"for_loop_semicolons.padding":true, | ||
"function_anonymous.empty_padding":false, | ||
"function_anonymous.group_to_block_spacing":"spaced", | ||
"function_anonymous.multiline.element_count":4, | ||
"function_anonymous.multiline.leading_comma":false, | ||
"function_anonymous.multiline.leading_comma.padding":true, | ||
"function_anonymous.multiline.min_length":40, | ||
"function_anonymous.padding":true, | ||
"function_call.casing.builtin":"cfdocs", | ||
"function_call.casing.userdefined":"camel", | ||
"function_call.empty_padding":false, | ||
"function_call.multiline.element_count":4, | ||
"function_call.multiline.leading_comma":false, | ||
"function_call.multiline.leading_comma.padding":true, | ||
"function_call.multiline.min_length":40, | ||
"function_call.padding":true, | ||
"function_declaration.empty_padding":false, | ||
"function_declaration.group_to_block_spacing":"spaced", | ||
"function_declaration.multiline.element_count":4, | ||
"function_declaration.multiline.leading_comma":false, | ||
"function_declaration.multiline.leading_comma.padding":true, | ||
"function_declaration.multiline.min_length":40, | ||
"function_declaration.padding":true, | ||
"indent_size":4, | ||
"keywords.block_to_keyword_spacing":"spaced", | ||
"keywords.empty_group_spacing":false, | ||
"keywords.group_to_block_spacing":"spaced", | ||
"keywords.padding_inside_group":true, | ||
"keywords.spacing_to_block":"spaced", | ||
"keywords.spacing_to_group":true, | ||
"max_columns":120, | ||
"method_call.chain.multiline":3, | ||
"newline":"\n", | ||
"parentheses.padding":true, | ||
"strings.attributes.quote":"double", | ||
"strings.quote":"double", | ||
"struct.empty_padding":false, | ||
"struct.multiline.element_count":4, | ||
"struct.multiline.leading_comma":false, | ||
"struct.multiline.leading_comma.padding":true, | ||
"struct.multiline.min_length":40, | ||
"struct.padding":true, | ||
"struct.separator":": ", | ||
"tab_indent":false | ||
} |
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
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,30 +1,31 @@ | ||
/** | ||
* Copyright Since 2005 Ortus Solutions, Corp | ||
* www.coldbox.org | www.luismajano.com | www.ortussolutions.com | www.gocontentbox.org | ||
************************************************************************************** | ||
*/ | ||
component{ | ||
this.name = "A TestBox Runner Suite " & hash( getCurrentTemplatePath() ); | ||
// any other application.cfc stuff goes below: | ||
this.sessionManagement = true; | ||
// Turn on/off white space management | ||
this.whiteSpaceManagement = "smart"; | ||
* Copyright Since 2005 Ortus Solutions, Corp | ||
* www.coldbox.org | www.luismajano.com | www.ortussolutions.com | www.gocontentbox.org | ||
************************************************************************************** | ||
*/ | ||
component { | ||
|
||
// any mappings go here, we create one that points to the root called test. | ||
testsPath = getDirectoryFromPath( getCurrentTemplatePath() ); | ||
this.mappings[ "/tests" ] = testsPath; | ||
rootPath = REReplaceNoCase( this.mappings[ "/tests" ], "tests(\\|/)", "" ); | ||
this.mappings[ "/root" ] = rootPath; | ||
this.mappings[ "/twilio-sdk" ] = rootPath; | ||
this.mappings[ "/hyper" ] = rootPath & "modules/hyper"; | ||
this.mappings[ "/testingModuleRoot" ] = listDeleteAt( rootPath, listLen( rootPath, '\/' ), "\/" ); | ||
this.name = "A TestBox Runner Suite " & hash( getCurrentTemplatePath() ); | ||
// any other application.cfc stuff goes below: | ||
this.sessionManagement = true; | ||
// Turn on/off white space management | ||
this.whiteSpaceManagement = "smart"; | ||
|
||
// any mappings go here, we create one that points to the root called test. | ||
testsPath = getDirectoryFromPath( getCurrentTemplatePath() ); | ||
this.mappings[ "/tests" ] = testsPath; | ||
rootPath = reReplaceNoCase( this.mappings[ "/tests" ], "tests(\\|/)", "" ); | ||
this.mappings[ "/root" ] = rootPath; | ||
this.mappings[ "/twilio-sdk" ] = rootPath; | ||
this.mappings[ "/hyper" ] = rootPath & "modules/hyper"; | ||
this.mappings[ "/testingModuleRoot" ] = listDeleteAt( rootPath, listLen( rootPath, "\/" ), "\/" ); | ||
this.mappings[ "/app" ] = testsPath & "resources/app"; | ||
this.mappings[ "/coldbox" ] = testsPath & "resources/app/coldbox"; | ||
this.mappings[ "/testbox" ] = rootPath & "testbox"; | ||
|
||
// request start | ||
public boolean function onRequestStart( String targetPage ){ | ||
return true; | ||
} | ||
// request start | ||
public boolean function onRequestStart( String targetPage ) { | ||
return true; | ||
} | ||
|
||
} |
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
Oops, something went wrong.