dunno why i did that

This commit is contained in:
John Bintz 2011-04-18 09:52:20 -04:00
parent 96ab03e328
commit 77210490df
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
var <%= object_name %>Model = Backbone.Model.extend({ var <%= object_name %> = Backbone.Model.extend({
}); });

View File

@ -1,8 +1,8 @@
describe('<%= object_name %>Model', function() { describe('<%= object_name %>', function() {
var model; var model;
it('should have some tests', function() { it('should have some tests', function() {
model = new <%= object_name %>Model(); model = new <%= object_name %>();
expect(true).toEqual(false); expect(true).toEqual(false);
}); });