Skip to content

Commit

Permalink
Update test for latest solidity
Browse files Browse the repository at this point in the history
  • Loading branch information
axic committed Sep 27, 2018
1 parent 92ee73c commit 9f0bc93
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,16 @@ tape('CLI', function (t) {
t.test('standard json', function (st) {
var input = {
'language': 'Solidity',
'settings': {
'outputSelection': {
'*': {
'*': [ 'evm.bytecode', 'userdoc' ]
}
}
},
'sources': {
'Contract.sol': {
'content': 'pragma solidity ^0.4.0; contract Contract { function f() {} }'
'content': 'pragma solidity ^0.4.0; contract Contract { function f() pure public {} }'
}
}
};
Expand Down

0 comments on commit 9f0bc93

Please sign in to comment.