17 lines
311 B
17 lines
311 B
10 years ago
|
var chai = require('chai');
|
||
|
var web3 = require('../index');
|
||
|
var testMethod = require('./helpers/test.method.js');
|
||
|
|
||
|
var method = 'getWork';
|
||
|
|
||
|
var tests = [{
|
||
|
args: [],
|
||
|
formattedArgs: [],
|
||
|
result: true,
|
||
|
formattedResult: true,
|
||
|
call: 'eth_'+ method
|
||
|
}];
|
||
|
|
||
|
testMethod.runTests('eth', method, tests);
|
||
|
|