diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-16 11:13:21 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-17 12:58:59 -0300 |
commit | 29a91c5bc65524fffeaaba493f30c419b98f0869 (patch) | |
tree | 8d74bd6804a33158c9923684e5140285cc461ca5 /spec/fixtures | |
parent | f77c47a51c8fef379b2dc9473545e53a28ec3c7f (diff) | |
download | gitlab-ce-29a91c5bc65524fffeaaba493f30c419b98f0869.tar.gz |
Fix matcher `match_response_schema`
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/api/schemas/issues.json | 4 | ||||
-rw-r--r-- | spec/fixtures/api/schemas/lists.json | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/issues.json b/spec/fixtures/api/schemas/issues.json new file mode 100644 index 00000000000..0d2067f704a --- /dev/null +++ b/spec/fixtures/api/schemas/issues.json @@ -0,0 +1,4 @@ +{ + "type": "array", + "items": { "$ref": "issue.json" } +} diff --git a/spec/fixtures/api/schemas/lists.json b/spec/fixtures/api/schemas/lists.json new file mode 100644 index 00000000000..9f618aa9de5 --- /dev/null +++ b/spec/fixtures/api/schemas/lists.json @@ -0,0 +1,4 @@ +{ + "type": "array", + "items": { "$ref": "list.json" } +} |