26 lines
501 B
JavaScript
26 lines
501 B
JavaScript
/* exported exists, count, present, blank, containsInstance, not */
|
|
// Test helpers
|
|
function exists(selector) {
|
|
return !!count(selector);
|
|
}
|
|
|
|
function count(selector) {
|
|
return find(selector).length;
|
|
}
|
|
|
|
function present(obj, text) {
|
|
ok(!Ember.isEmpty(obj), text);
|
|
}
|
|
|
|
function blank(obj, text) {
|
|
ok(Ember.isEmpty(obj), text);
|
|
}
|
|
|
|
function containsInstance(collection, klass, text) {
|
|
ok(klass.detectInstance(_.first(collection)), text);
|
|
}
|
|
|
|
function not(state, message) {
|
|
ok(!state, message);
|
|
}
|