You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
460 B
24 lines
460 B
10 years ago
|
var chai = require('chai');
|
||
|
var web3 = require('../index');
|
||
|
var testMethod = require('./helpers/test.method.js');
|
||
|
|
||
|
var method = 'getCompilers';
|
||
|
|
||
|
|
||
|
var tests = [{
|
||
|
args: [],
|
||
|
formattedArgs: [],
|
||
|
result: ['solidity'],
|
||
|
formattedResult: ['solidity'],
|
||
|
call: 'eth_'+ method
|
||
|
},{
|
||
|
args: [],
|
||
|
formattedArgs: [],
|
||
|
result: ['solidity'],
|
||
|
formattedResult: ['solidity'],
|
||
|
call: 'eth_'+ method
|
||
|
}];
|
||
|
|
||
|
testMethod.runTests('eth', method, tests);
|
||
|
|