-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #188 from metafacture/160-integrationTestsForCondi…
…tionals Add simple integration tests for conditionals and for #187
- Loading branch information
Showing
104 changed files
with
947 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
...tafacture/metafix/integration/conditional/fromJson/toJson/IfAny_equalSimple/expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type" : "dog" | ||
} | ||
{ | ||
"type" : "video" | ||
} | ||
{ | ||
"type" : "book", | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : "stone" | ||
} |
13 changes: 13 additions & 0 deletions
13
.../metafacture/metafix/integration/conditional/fromJson/toJson/IfAny_equalSimple/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type" : "dog" | ||
} | ||
{ | ||
"type" : "video" | ||
} | ||
{ | ||
"type" : "book" | ||
} | ||
{ | ||
"type" : "stone" | ||
} | ||
|
3 changes: 3 additions & 0 deletions
3
...rg/metafacture/metafix/integration/conditional/fromJson/toJson/IfAny_equalSimple/test.fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
if any_equal("type", "book") | ||
add_field("test", "test") | ||
end |
8 changes: 8 additions & 0 deletions
8
...g/metafacture/metafix/integration/conditional/fromJson/toJson/IfAny_equalSimple/test.flux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FLUX_DIR + "input.json" | ||
|open-file | ||
|as-records | ||
|decode-json | ||
|fix(FLUX_DIR + "test.fix") | ||
|encode-json(prettyPrinting="true") | ||
|write(FLUX_DIR + "output-metafix.json") | ||
; |
14 changes: 14 additions & 0 deletions
14
...metafix/integration/conditional/fromJson/toJson/ifAll_containArrayOfStrings/expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type" : [ "dog", "dog", "dog" ], | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : [ "video", "dog", "dog" ], | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : [ "book", "pc" ] | ||
} | ||
{ | ||
"type" : [ "human", "cat" ] | ||
} |
12 changes: 12 additions & 0 deletions
12
...re/metafix/integration/conditional/fromJson/toJson/ifAll_containArrayOfStrings/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"type" : [ "dog", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "video", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "book", "pc" ] | ||
} | ||
{ | ||
"type" : [ "human", "cat" ] | ||
} |
3 changes: 3 additions & 0 deletions
3
...ture/metafix/integration/conditional/fromJson/toJson/ifAll_containArrayOfStrings/test.fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
if all_contain("type[]", "o") | ||
add_field("test", "test") | ||
end |
8 changes: 8 additions & 0 deletions
8
...ure/metafix/integration/conditional/fromJson/toJson/ifAll_containArrayOfStrings/test.flux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FLUX_DIR + "input.json" | ||
|open-file | ||
|as-records | ||
|decode-json | ||
|fix(FLUX_DIR + "test.fix") | ||
|encode-json(prettyPrinting="true") | ||
|write(FLUX_DIR + "output-metafix.json") | ||
; |
14 changes: 14 additions & 0 deletions
14
...facture/metafix/integration/conditional/fromJson/toJson/ifAll_containSimple/expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type" : "dog" | ||
} | ||
{ | ||
"type" : "video", | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : "book" | ||
} | ||
{ | ||
"type" : "stone", | ||
"test" : "test" | ||
} |
12 changes: 12 additions & 0 deletions
12
...etafacture/metafix/integration/conditional/fromJson/toJson/ifAll_containSimple/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"type" : "dog" | ||
} | ||
{ | ||
"type" : "video" | ||
} | ||
{ | ||
"type" : "book" | ||
} | ||
{ | ||
"type" : "stone" | ||
} |
3 changes: 3 additions & 0 deletions
3
.../metafacture/metafix/integration/conditional/fromJson/toJson/ifAll_containSimple/test.fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
if all_contain("type", "e") | ||
add_field("test", "test") | ||
end |
8 changes: 8 additions & 0 deletions
8
...metafacture/metafix/integration/conditional/fromJson/toJson/ifAll_containSimple/test.flux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FLUX_DIR + "input.json" | ||
|open-file | ||
|as-records | ||
|decode-json | ||
|fix(FLUX_DIR + "test.fix") | ||
|encode-json(prettyPrinting="true") | ||
|write(FLUX_DIR + "output-metafix.json") | ||
; |
13 changes: 13 additions & 0 deletions
13
...e/metafix/integration/conditional/fromJson/toJson/ifAll_equalArrayOfStrings/expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type" : [ "dog", "dog", "dog" ], | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : [ "video", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "book", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "stone", "cat" ] | ||
} |
13 changes: 13 additions & 0 deletions
13
...ture/metafix/integration/conditional/fromJson/toJson/ifAll_equalArrayOfStrings/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type" : [ "dog", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "video", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "book", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "stone", "cat" ] | ||
} | ||
|
3 changes: 3 additions & 0 deletions
3
...acture/metafix/integration/conditional/fromJson/toJson/ifAll_equalArrayOfStrings/test.fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
if all_equal("type[]", "dog") | ||
add_field("test", "test") | ||
end |
8 changes: 8 additions & 0 deletions
8
...cture/metafix/integration/conditional/fromJson/toJson/ifAll_equalArrayOfStrings/test.flux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FLUX_DIR + "input.json" | ||
|open-file | ||
|as-records | ||
|decode-json | ||
|fix(FLUX_DIR + "test.fix") | ||
|encode-json(prettyPrinting="true") | ||
|write(FLUX_DIR + "output-metafix.json") | ||
; |
13 changes: 13 additions & 0 deletions
13
...tafacture/metafix/integration/conditional/fromJson/toJson/ifAll_equalSimple/expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type" : "dog" | ||
} | ||
{ | ||
"type" : "video" | ||
} | ||
{ | ||
"type" : "book", | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : "stone" | ||
} |
13 changes: 13 additions & 0 deletions
13
.../metafacture/metafix/integration/conditional/fromJson/toJson/ifAll_equalSimple/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type" : "dog" | ||
} | ||
{ | ||
"type" : "video" | ||
} | ||
{ | ||
"type" : "book" | ||
} | ||
{ | ||
"type" : "stone" | ||
} | ||
|
3 changes: 3 additions & 0 deletions
3
...rg/metafacture/metafix/integration/conditional/fromJson/toJson/ifAll_equalSimple/test.fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
if all_equal("type", "book") | ||
add_field("test", "test") | ||
end |
8 changes: 8 additions & 0 deletions
8
...g/metafacture/metafix/integration/conditional/fromJson/toJson/ifAll_equalSimple/test.flux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FLUX_DIR + "input.json" | ||
|open-file | ||
|as-records | ||
|decode-json | ||
|fix(FLUX_DIR + "test.fix") | ||
|encode-json(prettyPrinting="true") | ||
|write(FLUX_DIR + "output-metafix.json") | ||
; |
13 changes: 13 additions & 0 deletions
13
...e/metafix/integration/conditional/fromJson/toJson/ifAll_matchArrayOfStrings/expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type" : [ "dog", "dog", "dog" ], | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : [ "video", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "book", "pc" ] | ||
} | ||
{ | ||
"type" : [ "stone", "cat" ] | ||
} |
12 changes: 12 additions & 0 deletions
12
...ture/metafix/integration/conditional/fromJson/toJson/ifAll_matchArrayOfStrings/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"type" : [ "dog", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "video", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "book", "pc" ] | ||
} | ||
{ | ||
"type" : [ "stone", "cat" ] | ||
} |
3 changes: 3 additions & 0 deletions
3
...acture/metafix/integration/conditional/fromJson/toJson/ifAll_matchArrayOfStrings/test.fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
if all_match("type[]", "\\S{3}") | ||
add_field("test", "test") | ||
end |
8 changes: 8 additions & 0 deletions
8
...cture/metafix/integration/conditional/fromJson/toJson/ifAll_matchArrayOfStrings/test.flux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FLUX_DIR + "input.json" | ||
|open-file | ||
|as-records | ||
|decode-json | ||
|fix(FLUX_DIR + "test.fix") | ||
|encode-json(prettyPrinting="true") | ||
|write(FLUX_DIR + "output-metafix.json") | ||
; |
14 changes: 14 additions & 0 deletions
14
...tafacture/metafix/integration/conditional/fromJson/toJson/ifAll_matchSimple/expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type" : "dog" | ||
} | ||
{ | ||
"type" : "video", | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : "book" | ||
} | ||
{ | ||
"type" : "stone", | ||
"test" : "test" | ||
} |
13 changes: 13 additions & 0 deletions
13
.../metafacture/metafix/integration/conditional/fromJson/toJson/ifAll_matchSimple/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type" : "dog" | ||
} | ||
{ | ||
"type" : "video" | ||
} | ||
{ | ||
"type" : "book" | ||
} | ||
{ | ||
"type" : "stone" | ||
} | ||
|
3 changes: 3 additions & 0 deletions
3
...rg/metafacture/metafix/integration/conditional/fromJson/toJson/ifAll_matchSimple/test.fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
if all_match("type", "\\S{5}") | ||
add_field("test", "test") | ||
end |
8 changes: 8 additions & 0 deletions
8
...g/metafacture/metafix/integration/conditional/fromJson/toJson/ifAll_matchSimple/test.flux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FLUX_DIR + "input.json" | ||
|open-file | ||
|as-records | ||
|decode-json | ||
|fix(FLUX_DIR + "test.fix") | ||
|encode-json(prettyPrinting="true") | ||
|write(FLUX_DIR + "output-metafix.json") | ||
; |
15 changes: 15 additions & 0 deletions
15
...metafix/integration/conditional/fromJson/toJson/ifAny_containArrayOfStrings/expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"type" : [ "dog", "dog", "dog" ], | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : [ "video", "dog", "dog" ], | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : [ "book", "pc" ], | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : [ "human", "cat" ] | ||
} |
12 changes: 12 additions & 0 deletions
12
...re/metafix/integration/conditional/fromJson/toJson/ifAny_containArrayOfStrings/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"type" : [ "dog", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "video", "dog", "dog" ] | ||
} | ||
{ | ||
"type" : [ "book", "pc" ] | ||
} | ||
{ | ||
"type" : [ "human", "cat" ] | ||
} |
3 changes: 3 additions & 0 deletions
3
...ture/metafix/integration/conditional/fromJson/toJson/ifAny_containArrayOfStrings/test.fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
if any_contain("type[]", "o") | ||
add_field("test", "test") | ||
end |
8 changes: 8 additions & 0 deletions
8
...ure/metafix/integration/conditional/fromJson/toJson/ifAny_containArrayOfStrings/test.flux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FLUX_DIR + "input.json" | ||
|open-file | ||
|as-records | ||
|decode-json | ||
|fix(FLUX_DIR + "test.fix") | ||
|encode-json(prettyPrinting="true") | ||
|write(FLUX_DIR + "output-metafix.json") | ||
; |
14 changes: 14 additions & 0 deletions
14
...facture/metafix/integration/conditional/fromJson/toJson/ifAny_containSimple/expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type" : "dog" | ||
} | ||
{ | ||
"type" : "video", | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : "book" | ||
} | ||
{ | ||
"type" : "stone", | ||
"test" : "test" | ||
} |
13 changes: 13 additions & 0 deletions
13
...etafacture/metafix/integration/conditional/fromJson/toJson/ifAny_containSimple/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type" : "dog" | ||
} | ||
{ | ||
"type" : "video" | ||
} | ||
{ | ||
"type" : "book" | ||
} | ||
{ | ||
"type" : "stone" | ||
} | ||
|
3 changes: 3 additions & 0 deletions
3
.../metafacture/metafix/integration/conditional/fromJson/toJson/ifAny_containSimple/test.fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
if any_contain("type", "e") | ||
add_field("test", "test") | ||
end |
8 changes: 8 additions & 0 deletions
8
...metafacture/metafix/integration/conditional/fromJson/toJson/ifAny_containSimple/test.flux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FLUX_DIR + "input.json" | ||
|open-file | ||
|as-records | ||
|decode-json | ||
|fix(FLUX_DIR + "test.fix") | ||
|encode-json(prettyPrinting="true") | ||
|write(FLUX_DIR + "output-metafix.json") | ||
; |
15 changes: 15 additions & 0 deletions
15
...e/metafix/integration/conditional/fromJson/toJson/ifAny_equalArrayOfStrings/expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"type" : [ "dog", "dog", "dog" ], | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : [ "video", "dog", "dog" ], | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : [ "book", "dog", "dog" ], | ||
"test" : "test" | ||
} | ||
{ | ||
"type" : [ "stone", "cat" ] | ||
} |
Oops, something went wrong.