static tests start with @

This commit is contained in:
Ryan X. Charles 2014-08-24 14:51:55 -07:00
parent f3dcb5bba1
commit a0ad59fbac
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ describe('Base58Check', function() {
should.exist(b58); should.exist(b58);
}); });
describe('#encode', function() { describe('@encode', function() {
it('should encode the buffer accurately', function() { it('should encode the buffer accurately', function() {
Base58Check.encode(buf).should.equal(enc); Base58Check.encode(buf).should.equal(enc);
@ -30,7 +30,7 @@ describe('Base58Check', function() {
}); });
describe('#decode', function() { describe('@decode', function() {
it('should decode this encoded value correctly', function() { it('should decode this encoded value correctly', function() {
Base58Check.decode(enc).toString('hex').should.equal(buf.toString('hex')); Base58Check.decode(enc).toString('hex').should.equal(buf.toString('hex'));