aboutsummaryrefslogtreecommitdiffstats
path: root/db.methods.js
diff options
context:
space:
mode:
Diffstat (limited to 'db.methods.js')
-rw-r--r--db.methods.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/db.methods.js b/db.methods.js
index b4abfc4d..662f4e7c 100644
--- a/db.methods.js
+++ b/db.methods.js
@@ -7,12 +7,10 @@ web3.setProvider(new web3.providers.WebSocketProvider('http://localhost:8080'));
describe('web3', function() {
describe('db', function() {
- it('should have all methods implemented', function() {
- u.methodExists(web3.db, 'put');
- u.methodExists(web3.db, 'get');
- u.methodExists(web3.db, 'putString');
- u.methodExists(web3.db, 'getString');
- });
+ u.methodExists(web3.db, 'put');
+ u.methodExists(web3.db, 'get');
+ u.methodExists(web3.db, 'putString');
+ u.methodExists(web3.db, 'getString');
});
});