Skip to content

Instantly share code, notes, and snippets.

View witoldsz's full-sized avatar

Witold Szczerba witoldsz

View GitHub Profile
@witoldsz
witoldsz / TableModelSpec.js
Created March 10, 2012 23:25
Unit test for table model.
describe('table model', function() {
var hud, tableModel;
beforeEach(function(){
hud = jasmine.createSpyObj('hud', ['info']);
module('your-module-name', function($provide) {
$provide.value('hud', hud);
});
inject(function(tableModelFactory) {