discourse/test/javascripts/helpers/assertions.js

20 lines
375 B
JavaScript
Raw Normal View History

2013-06-20 13:58:54 -04:00
// Test helpers
function exists(selector) {
return !!count(selector);
}
function count(selector) {
return find(selector).length;
}
function present(obj, text) {
ok(!Ember.isEmpty(obj), text);
2013-06-20 13:58:54 -04:00
}
function blank(obj, text) {
ok(Ember.isEmpty(obj), text);
}
function containsInstance(collection, klass, text) {
ok(klass.detectInstance(_.first(collection)), text);
2013-06-20 13:58:54 -04:00
}