aboutsummaryrefslogtreecommitdiffstats
path: root/db.methods.js
diff options
context:
space:
mode:
Diffstat (limited to 'db.methods.js')
-rw-r--r--db.methods.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/db.methods.js b/db.methods.js
deleted file mode 100644
index 662f4e7c..00000000
--- a/db.methods.js
+++ /dev/null
@@ -1,16 +0,0 @@
-require('es6-promise').polyfill();
-
-var assert = require('assert');
-var web3 = require('../index.js');
-var u = require('./utils.js');
-web3.setProvider(new web3.providers.WebSocketProvider('http://localhost:8080')); // TODO: create some mock provider
-
-describe('web3', function() {
- describe('db', function() {
- u.methodExists(web3.db, 'put');
- u.methodExists(web3.db, 'get');
- u.methodExists(web3.db, 'putString');
- u.methodExists(web3.db, 'getString');
- });
-});
-