Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
powmedia committed Sep 8, 2011
1 parent c50bb77 commit 5232ff9
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions test/helpers.js
Expand Up @@ -35,17 +35,11 @@ module('createEditor');
ok(create('Select', options) instanceof editors.Select);
ok(create('Object', options) instanceof editors.Object);
ok(create('NestedModel', options) instanceof editors.NestedModel);
ok(create('Date', options) instanceof editors.Date);
ok(create('DateTime', options) instanceof editors.DateTime);
ok(create('List', options) instanceof editors.List);
});

test('Accepts editor constructors', function() {
ok(create(editors.Text, options) instanceof editors.Text);
ok(create(editors.Select, options) instanceof editors.Select);
ok(create(editors.List, options) instanceof editors.List);
ok(create(editors.Date, options) instanceof editors.Date);
ok(create(editors.DateTime, options) instanceof editors.DateTime);
});

})();

0 comments on commit 5232ff9

Please sign in to comment.