provisioning: place testfiles within testdata folder

This commit is contained in:
bergquist 2018-05-29 14:07:37 +02:00
parent a1e6c31ec1
commit 1411709db1
16 changed files with 6 additions and 15 deletions

View File

@ -71,12 +71,3 @@ datasources:
authType: credentials
defaultRegion: eu-west-2
- name: Cloudwatch keys
type: cloudwatch
editable: true
jsonData:
authType: keys
defaultRegion: eu-west-2
secureJsonData:
accessKey: AKIAJL347VWN6MK63N2A
secretKey: QyvfyvnQs4foDt7X+Xcu+WjNqfxfTC7PbG6Jf0Fk

View File

@ -13,12 +13,12 @@ import (
var (
logger log.Logger = log.New("fake.log")
twoDatasourcesConfig = "./test-configs/two-datasources"
twoDatasourcesConfigPurgeOthers = "./test-configs/insert-two-delete-two"
doubleDatasourcesConfig = "./test-configs/double-default"
allProperties = "./test-configs/all-properties"
versionZero = "./test-configs/version-0"
brokenYaml = "./test-configs/broken-yaml"
twoDatasourcesConfig = "testdata/two-datasources"
twoDatasourcesConfigPurgeOthers = "testdata/insert-two-delete-two"
doubleDatasourcesConfig = "testdata/double-default"
allProperties = "testdata/all-properties"
versionZero = "testdata/version-0"
brokenYaml = "testdata/broken-yaml"
fakeRepo *fakeRepository
)