11 lines
195 B
Plaintext
11 lines
195 B
Plaintext
|
describe('<%= object_name %>Model', function() {
|
||
|
var model;
|
||
|
|
||
|
it('should have some tests', function() {
|
||
|
model = new <%= object_name %>Model();
|
||
|
|
||
|
expect(true).toEqual(false);
|
||
|
});
|
||
|
});
|
||
|
|