static tests start with @

This commit is contained in:
Ryan X. Charles 2014-08-24 20:37:16 -07:00
parent 1b1ecd989a
commit db7ae4c6d1

View File

@ -3,7 +3,7 @@ var Random = require('../lib/random');
describe('Random', function() { describe('Random', function() {
describe('#getRandomBuffer', function() { describe('@getRandomBuffer', function() {
it('should return a buffer', function() { it('should return a buffer', function() {
var bytes = Random.getRandomBuffer(8); var bytes = Random.getRandomBuffer(8);
@ -28,7 +28,7 @@ describe('Random', function() {
}); });
describe('#getPseudoRandomBuffer', function() { describe('@getPseudoRandomBuffer', function() {
it('should generate 7 random bytes', function() { it('should generate 7 random bytes', function() {
var buf = Random.getPseudoRandomBuffer(7); var buf = Random.getPseudoRandomBuffer(7);