silverstripe-framework/tests/php/Core/Manifest/fixtures/configmanifest/mysite/_config/multiplerules.yml
2017-07-21 15:02:27 +12:00

51 lines
1.4 KiB
YAML

---
Only:
ConstantDefined: MULTIPLERULES_UNDEFINEDCONSTANT
EnvVarSet: MULTIPLERULES_ENVVARIABLESET
---
SilverStripe\Core\Tests\Manifest\ConfigManifestTest:
MultipleRules:
TwoOnlyFail: "not included - one of the onlies fails"
---
Only:
ConstantDefined: MULTIPLERULES_DEFINEDCONSTANT
EnvVarSet: MULTIPLERULES_ENVVARIABLESET
---
SilverStripe\Core\Tests\Manifest\ConfigManifestTest:
MultipleRules:
TwoOnlySucceed: "included - both onlies succeed"
---
Except:
ConstantDefined: MULTIPLERULES_UNDEFINEDCONSTANT
EnvVarSet: MULTIPLERULES_ENVVARIABLESET
---
SilverStripe\Core\Tests\Manifest\ConfigManifestTest:
MultipleRules:
OneExceptFail: "excluded - one of the excepts fails"
---
Except:
ConstantDefined: MULTIPLERULES_DEFINEDCONSTANT
EnvVarSet: MULTIPLERULES_ENVVARIABLESET
---
SilverStripe\Core\Tests\Manifest\ConfigManifestTest:
MultipleRules:
TwoExceptFail: "not included - both excepts fail"
---
Except:
EnvVarSet: MULTIPLERULES_ENVVARIABLESET
Only:
EnvVarSet: MULTIPLERULES_ENVVARIABLESET
---
SilverStripe\Core\Tests\Manifest\ConfigManifestTest:
MultipleRules:
TwoBlocksFail: "not included - one block fails"
---
Except:
ConstantDefined: MULTIPLERULES_UNDEFINEDCONSTANT
Only:
EnvVarSet: MULTIPLERULES_ENVVARIABLESET
---
SilverStripe\Core\Tests\Manifest\ConfigManifestTest:
MultipleRules:
TwoBlocksSucceed: "included - both blocks succeed"