Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-29 15:09:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-29 15:09:08 +0300
commit7cc6872401eb487ed20dbb9d455f8bb9c97d9e39 (patch)
tree63f6ed5d4e6c5cec31c43363626d9f5b178eddf8 /spec/fixtures/lib
parent46b10c0fc884400941c17e2777b242ac54d111e5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/fixtures/lib')
-rw-r--r--spec/fixtures/lib/gitlab/import_export/with_duplicates.json43
1 files changed, 43 insertions, 0 deletions
diff --git a/spec/fixtures/lib/gitlab/import_export/with_duplicates.json b/spec/fixtures/lib/gitlab/import_export/with_duplicates.json
new file mode 100644
index 00000000000..ed2e1821dd3
--- /dev/null
+++ b/spec/fixtures/lib/gitlab/import_export/with_duplicates.json
@@ -0,0 +1,43 @@
+{
+ "simple": 42,
+ "duped_hash_with_id": {
+ "id": 0,
+ "v1": 1
+ },
+ "duped_hash_no_id": {
+ "v1": 1
+ },
+ "duped_array": [
+ "v2"
+ ],
+ "array": [
+ {
+ "duped_hash_with_id": {
+ "id": 0,
+ "v1": 1
+ }
+ },
+ {
+ "duped_array": [
+ "v2"
+ ]
+ },
+ {
+ "duped_hash_no_id": {
+ "v1": 1
+ }
+ }
+ ],
+ "nested": {
+ "duped_hash_with_id": {
+ "id": 0,
+ "v1": 1
+ },
+ "duped_array": [
+ "v2"
+ ],
+ "array": [
+ "don't touch"
+ ]
+ }
+} \ No newline at end of file