chore: move a test case to 049

This commit is contained in:
rvcas 2023-01-30 11:48:41 -05:00
parent b653714c0c
commit aec79936e2
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# This file was generated by Aiken
# You typically do not need to edit this file
requirements = []
packages = []

View File

@ -0,0 +1,3 @@
name = 'aiken-lang/acceptance_test_049'
version = '0.0.0'
description = ''

View File

@ -0,0 +1 @@
addr1w9z47fyj9ffqck2fnld04k27zfe04wq6n9zj76u4ghu4xdcd0futm

View File

@ -0,0 +1,5 @@
{
"type": "PlutusScriptV2",
"description": "Generated by Aiken",
"cborHex": "4e4d01000022253335734944526161"
}

View File

@ -0,0 +1 @@
4d01000022253335734944526161

View File

@ -0,0 +1 @@
addr_test1wpz47fyj9ffqck2fnld04k27zfe04wq6n9zj76u4ghu4xdck8aqy7

View File

@ -0,0 +1,9 @@
pub fn when_tuple(a: (Int, Int)) -> Int {
when a is {
(a, b) -> a
}
}
test when_tuple_1() {
when_tuple((4, 1)) == 4
}