mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:03:00 +08:00
25 lines
433 B
JavaScript
25 lines
433 B
JavaScript
// 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);
|
|
}
|