This file contains hidden or 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
// We're providing some convenience functions here as well as making sure | |
// chai tests don't fall on jshint errors by remapping true/false properties | |
chai.Assertion.addProperty('_true', function () { | |
this.assert( | |
true === this.__flags.object, | |
'expected #{this} to be true', | |
'expected #{this} to be false', | |
this.negate ? false : true | |
); | |
}); |
This file contains hidden or 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
#!/bin/sh | |
set -e | |
TERRAFORM_BUCKET_REGION='us-east-1' | |
TERRAFORM_BUCKET_NAME='' | |
TERRAFORM_VERSION="0.7.4" | |
actions="plan apply fmt plan-destroy destroy refresh graph validate" |
OlderNewer