Skip to content

Commit

Permalink
style: add newline to all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeStanger committed Jun 16, 2023
1 parent de57c71 commit 8b6439f
Show file tree
Hide file tree
Showing 24 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion assets/inputs/array.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
foo = [ 1 2 3 ]
}
}
2 changes: 1 addition & 1 deletion assets/inputs/basic.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
foo = "bar"
}
}
2 changes: 1 addition & 1 deletion assets/inputs/basic_empty_let.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
let { } in {
foo = "bar"
}
}
2 changes: 1 addition & 1 deletion assets/inputs/boolean.corn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
foo = true
bar = false
}
}
2 changes: 1 addition & 1 deletion assets/inputs/chained.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
foo.bar = "baz"
}
}
2 changes: 1 addition & 1 deletion assets/inputs/chained_complex.corn
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
}

foo.quux = [ "green eggs" "ham" ]
}
}
2 changes: 1 addition & 1 deletion assets/inputs/char.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
foo = "a"
}
}
2 changes: 1 addition & 1 deletion assets/inputs/comment.corn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
// single line comment
foo = "bar" // mixed line comment
}
}
2 changes: 1 addition & 1 deletion assets/inputs/complex_keys.corn
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
j12345 = 4
foo.bar-baz = "hello"
apple-pie.crust = "yum"
}
}
2 changes: 1 addition & 1 deletion assets/inputs/environment_variable.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
foo = $env_CORN_TEST
}
}
2 changes: 1 addition & 1 deletion assets/inputs/float.corn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
foo = 3.14159
bar = 1.01e+2
}
}
2 changes: 1 addition & 1 deletion assets/inputs/input.corn
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ let {
}

dob = $birthday
}
}
2 changes: 1 addition & 1 deletion assets/inputs/input_references_input.corn
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ let {
$baz = $foo
} in {
foo = $baz
}
}
2 changes: 1 addition & 1 deletion assets/inputs/integer.corn
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
foo = 42
bar = 0xfafafa
baz = 1_000_000
}
}
2 changes: 1 addition & 1 deletion assets/inputs/invalid.corn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
this is not valid corn config
this is not valid corn config
2 changes: 1 addition & 1 deletion assets/inputs/invalid_input.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
foo = $bar
}
}
2 changes: 1 addition & 1 deletion assets/inputs/mixed_array.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
foo = [ 1 "two" false ]
}
}
2 changes: 1 addition & 1 deletion assets/inputs/null.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
foo = null
}
}
2 changes: 1 addition & 1 deletion assets/inputs/object.corn
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
foo = {
bar = 42
}
}
}
2 changes: 1 addition & 1 deletion assets/inputs/object_in_array.corn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
foo = [ { foo = 1 bar = 2 } ]
}
}
2 changes: 1 addition & 1 deletion assets/inputs/string.corn
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
bar = "\"\\\n\r\t"
baz = "\u0061"
qux = ""
}
}
2 changes: 1 addition & 1 deletion assets/inputs/string_interpolation.corn
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ let {
$subject = "world"
} in {
foo = "$greeting, $subject"
}
}
2 changes: 1 addition & 1 deletion assets/inputs/value_after_table.corn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
foo = {}
qux = true
}
}
2 changes: 1 addition & 1 deletion assets/inputs/very_compact.corn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{one={foo="bar" bar="foo"} two={foo=1 bar=2} three={foo=1.0 bar=2.0} four={foo=true bar=false} five={foo=null bar=null} six={foo={} bar={}} seven={foo=[] bar=[]} eight=["foo""bar"] nine=[truefalse] ten=[nullnull] eleven=[[][]] twelve=[{}{}]}
{one={foo="bar" bar="foo"} two={foo=1 bar=2} three={foo=1.0 bar=2.0} four={foo=true bar=false} five={foo=null bar=null} six={foo={} bar={}} seven={foo=[] bar=[]} eight=["foo""bar"] nine=[truefalse] ten=[nullnull] eleven=[[][]] twelve=[{}{}]}

0 comments on commit 8b6439f

Please sign in to comment.