mirror of https://github.com/status-im/web3.js.git
16 lines
419 B
JavaScript
16 lines
419 B
JavaScript
var chai = require('chai');
|
|
var assert = chai.assert;
|
|
var Web3 = require('../index.js');
|
|
var web3 = new Web3();
|
|
var u = require('./helpers/test.utils.js');
|
|
|
|
describe('web3.db', function() {
|
|
describe('methods', function() {
|
|
u.methodExists(web3.db, 'putHex');
|
|
u.methodExists(web3.db, 'getHex');
|
|
u.methodExists(web3.db, 'putString');
|
|
u.methodExists(web3.db, 'getString');
|
|
});
|
|
});
|
|
|