mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
86a9e0db6a
Mark all functions as exported
25 lines
501 B
JavaScript
25 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);
|
|
}
|