backbone-generator/templates/model_spec.js.erb

11 lines
185 B
Plaintext
Raw Normal View History

2011-04-18 13:52:20 +00:00
describe('<%= object_name %>', function() {
2011-04-15 18:55:37 +00:00
var model;
it('should have some tests', function() {
2011-04-18 13:52:20 +00:00
model = new <%= object_name %>();
2011-04-15 18:55:37 +00:00
expect(true).toEqual(false);
});
});