blob: 4d653cac2d924849f677220363c24bb2e7aa0449 [file] [log] [blame]
Jamie Hannaford1943b382015-02-12 11:50:02 +01001package databases
2
Jamie Hannafordd3a78ef2015-02-18 12:17:16 +01003var createDBsReq = `
Jamie Hannaford1943b382015-02-12 11:50:02 +01004{
Jamie Hannafordd3a78ef2015-02-18 12:17:16 +01005 "databases": [
6 {
7 "character_set": "utf8",
8 "collate": "utf8_general_ci",
9 "name": "testingdb"
10 },
11 {
12 "name": "sampledb"
13 }
14 ]
Jamie Hannaford1943b382015-02-12 11:50:02 +010015}
Jamie Hannafordd3a78ef2015-02-18 12:17:16 +010016`
Jamie Hannaford1943b382015-02-12 11:50:02 +010017
Jamie Hannafordd3a78ef2015-02-18 12:17:16 +010018var listDBsResp = `
Jamie Hannaford1943b382015-02-12 11:50:02 +010019{
20 "databases": [
21 {
22 "name": "anotherexampledb"
23 },
24 {
25 "name": "exampledb"
26 },
27 {
28 "name": "nextround"
29 },
30 {
31 "name": "sampledb"
32 },
33 {
34 "name": "testingdb"
35 }
36 ]
37}
Jamie Hannafordd3a78ef2015-02-18 12:17:16 +010038`