Skip to content

Commit

Permalink
add uppercase.json for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
blotus committed Dec 11, 2023
1 parent 615c15b commit ac5179a
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions internal/transformations/testdata/uppercase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[
{
"input" : "",
"name" : "uppercase",
"type" : "tfn",
"ret" : 0,
"output" : ""
},
{
"output" : "TESTCASE",
"ret" : 0,
"name" : "uppercase",
"input" : "testcase",
"type" : "tfn"
},
{
"ret" : 0,
"input" : "test\u0000case",
"type" : "tfn",
"name" : "uppercase",
"output" : "TEST\u0000CASE"
},
{
"output" : "TESTCASE",
"input" : "testcase",
"name" : "uppercase",
"type" : "tfn",
"ret" : 1
},
{
"ret" : 1,
"input" : "Test\u0000Case",
"name" : "uppercase",
"type" : "tfn",
"output" : "TEST\u0000CASE"
}
]

0 comments on commit ac5179a

Please sign in to comment.