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.
16 lines
352 B
16 lines
352 B
var chai = require('chai');
|
|
var web3 = require('../index');
|
|
var testMethod = require('./helpers/test.method.js');
|
|
|
|
var method = 'putHex';
|
|
|
|
var tests = [{
|
|
args: ['myDB', 'myKey', '0xb'],
|
|
formattedArgs: ['myDB', 'myKey', '0xb'],
|
|
result: true,
|
|
formattedResult: true,
|
|
call: 'db_'+ method
|
|
}];
|
|
|
|
testMethod.runTests('db', method, tests);
|
|
|
|
|