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.
17 lines
363 B
17 lines
363 B
10 years ago
|
var chai = require('chai');
|
||
|
var web3 = require('../index');
|
||
|
var testMethod = require('./helpers/test.method.js');
|
||
|
|
||
|
var method = 'putString';
|
||
|
|
||
|
var tests = [{
|
||
|
args: ['myDB', 'myKey', 'myValue'],
|
||
|
formattedArgs: ['myDB', 'myKey', 'myValue'],
|
||
|
result: true,
|
||
|
formattedResult: true,
|
||
|
call: 'db_'+ method
|
||
|
}];
|
||
|
|
||
|
testMethod.runTests('db', method, tests);
|
||
|
|