Browse Source

tests: avoid unnecessary .ok

hk-custom-address
Daniel Cousens 11 years ago
parent
commit
82d8e20793
  1. 4
      test/ecpubkey.js
  2. 8
      test/message.js
  3. 2
      test/wallet.js

4
test/ecpubkey.js

@ -91,13 +91,13 @@ describe('ECPubKey', function() {
it('verifies a valid signature', function() { it('verifies a valid signature', function() {
var hash = crypto.sha256(fixtures.message) var hash = crypto.sha256(fixtures.message)
assert.ok(pubKey.verify(hash, signature)) assert(pubKey.verify(hash, signature))
}) })
it('doesn\'t verify the wrong signature', function() { it('doesn\'t verify the wrong signature', function() {
var hash = crypto.sha256('mushrooms') var hash = crypto.sha256('mushrooms')
assert.ok(!pubKey.verify(hash, signature)) assert(!pubKey.verify(hash, signature))
}) })
}) })
}) })

8
test/message.js

@ -26,7 +26,7 @@ describe('Message', function() {
var network = networks[f.network] var network = networks[f.network]
var address = Address.fromBase58Check(f.address) var address = Address.fromBase58Check(f.address)
assert.ok(Message.verify(address, f.signature, f.message, network)) assert(Message.verify(address, f.signature, f.message, network))
}) })
fixtures.valid.verify.forEach(function(f) { fixtures.valid.verify.forEach(function(f) {
@ -34,17 +34,17 @@ describe('Message', function() {
var network = networks[f.network] var network = networks[f.network]
var signature = f.signature var signature = f.signature
assert.ok(Message.verify(f.address, f.signature, f.message, network)) assert(Message.verify(f.address, f.signature, f.message, network))
if (f.compressed) { if (f.compressed) {
assert.ok(Message.verify(f.compressed.address, f.compressed.signature, f.message, network)) assert(Message.verify(f.compressed.address, f.compressed.signature, f.message, network))
} }
}) })
}) })
fixtures.invalid.verify.forEach(function(f) { fixtures.invalid.verify.forEach(function(f) {
it(f.description, function() { it(f.description, function() {
assert.ok(!Message.verify(f.address, f.signature, f.message)) assert(!Message.verify(f.address, f.signature, f.message))
}) })
}) })
}) })

2
test/wallet.js

@ -63,7 +63,7 @@ describe('Wallet', function() {
describe('when seed is not specified', function(){ describe('when seed is not specified', function(){
it('generates a seed', function(){ it('generates a seed', function(){
var wallet = new Wallet() var wallet = new Wallet()
assert.ok(wallet.getMasterKey()) assert(wallet.getMasterKey())
}) })
}) })

Loading…
Cancel
Save