Skip to content

Commit

Permalink
spec added
Browse files Browse the repository at this point in the history
  • Loading branch information
sgenduso committed Nov 16, 2015
1 parent 11217f0 commit e3daee3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions tests/spec/morse-code-spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
var myCode = require('../../algorithms/morse-code/function.js');

describe('decodeMorse', function() {

it('decodes a morse code message into plain english', function() {


expect(myCode.decodeMorse()).toEqual();


});

});

describe('encodeTextToMorse', function() {

it('encodes a string of plain english into morse code', function() {


expect(myCode.encodeTextToMorse()).toEqual();


});

});

0 comments on commit e3daee3

Please sign in to comment.