diff --git a/examples/acceptance_tests/060/aiken.lock b/examples/acceptance_tests/060/aiken.lock new file mode 100644 index 00000000..3a78b1e7 --- /dev/null +++ b/examples/acceptance_tests/060/aiken.lock @@ -0,0 +1,5 @@ +# This file was generated by Aiken +# You typically do not need to edit this file + +requirements = [] +packages = [] diff --git a/examples/acceptance_tests/060/aiken.toml b/examples/acceptance_tests/060/aiken.toml new file mode 100644 index 00000000..615fb5ac --- /dev/null +++ b/examples/acceptance_tests/060/aiken.toml @@ -0,0 +1,2 @@ +name = "aiken-lang/acceptance_test_060" +version = "0.0.0" diff --git a/examples/acceptance_tests/060/lib/tests.ak b/examples/acceptance_tests/060/lib/tests.ak new file mode 100644 index 00000000..54edb79d --- /dev/null +++ b/examples/acceptance_tests/060/lib/tests.ak @@ -0,0 +1,15 @@ +type Foo { + foo: Int, +} + +const foo_constant = Foo { foo: 42 } + +test foo() { + foo_constant == Foo { foo: 42 } +} + +const tuple_constant = (1, 2, 3) + +test bar() { + tuple_constant == (1, 2, 3) +}