github.com/Tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app24-multiple_inheritance_and_intermingling_contracts/deploy.yaml (about) 1 jobs: 2 3 #deploy contract One 4 - name: deployOne 5 deploy: 6 contract: one.sol 7 instance: one 8 9 - name: get1i 10 query-contract: 11 destination: $deployOne 12 function: i 13 bin: one 14 15 - name: assert1One 16 assert: 17 key: $get1i 18 relation: eq 19 val: 1 20 21 #deploy contract two 22 - name: deployTwo 23 deploy: 24 contract: two.sol 25 instance: two 26 27 - name: get2i 28 query-contract: 29 destination: $deployTwo 30 function: i 31 bin: two 32 33 - name: assert2One 34 assert: 35 key: $get2i 36 relation: eq 37 val: 1 38 39 - name: get2ii 40 query-contract: 41 destination: $deployTwo 42 function: ii 43 bin: two 44 45 - name: assert2Two 46 assert: 47 key: $get2ii 48 relation: eq 49 val: 2 50 51 #deploy contract three 52 - name: deployThree 53 deploy: 54 contract: three.sol 55 instance: three 56 57 - name: get3i 58 query-contract: 59 destination: $deployThree 60 function: i 61 bin: three 62 63 - name: assert3One 64 assert: 65 key: $get3i 66 relation: eq 67 val: 1 68 69 - name: get3ii 70 query-contract: 71 destination: $deployThree 72 function: ii 73 bin: three 74 75 - name: assert3Two 76 assert: 77 key: $get3ii 78 relation: eq 79 val: 2 80 81 - name: get3iii 82 query-contract: 83 destination: $deployThree 84 function: iii 85 bin: three 86 87 - name: assert3Three 88 assert: 89 key: $get3iii 90 relation: eq 91 val: 3