github.com/tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app39-sign-extension/deploy.yaml (about)

     1  jobs:
     2  
     3  - name: deployByteCasting
     4    deploy:
     5        contract: byte_casting.sol
     6  
     7  - name: test
     8    call:
     9        destination: $deployByteCasting
    10        function: Test
    11        data:
    12          - -5
    13          - 6
    14          - 7
    15  
    16  - name: assertExtension
    17    assert:
    18        key: $test
    19        relation: eq
    20        val: (-5, 6, 7)
    21  
    22  
    23