use hash marks in function names in tests

This commit is contained in:
Ryan X. Charles 2014-08-07 20:10:56 -07:00
parent c00f1ebeea
commit 1e4f751633
1 changed files with 2 additions and 2 deletions

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);