2015-01-11 10:54:36 -06:00
|
|
|
|
|
|
|
var assert = require('assert');
|
|
|
|
var web3 = require('../index.js');
|
2015-02-03 12:48:51 -06:00
|
|
|
var u = require('./test.utils.js');
|
2015-01-11 10:54:36 -06:00
|
|
|
|
|
|
|
describe('web3', function() {
|
|
|
|
describe('db', function() {
|
2015-01-15 04:38:21 -06:00
|
|
|
u.methodExists(web3.db, 'put');
|
|
|
|
u.methodExists(web3.db, 'get');
|
|
|
|
u.methodExists(web3.db, 'putString');
|
|
|
|
u.methodExists(web3.db, 'getString');
|
2015-01-11 10:54:36 -06:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|