Skip to content

Commit

Permalink
Stub out SAT decoding.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed Jan 22, 2014
1 parent 8f67778 commit e9aeead
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/decode/sat.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
var jws = require('jws');

module.exports = function(options) {
options = options || {};

return function sat(data) {
}
}
13 changes: 13 additions & 0 deletions test/decode/sat.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
var sat = require('../../lib/decode/sat')
, fs = require('fs')
, jws = require('jws');


describe('decode.sat', function() {

it('should be named sat', function() {
expect(sat().name).to.equal('sat');
});

});

0 comments on commit e9aeead

Please sign in to comment.