2014-03-11 14:36:10 +08:00
|
|
|
/* exported exists, count, present, blank, containsInstance, not */
|
2013-06-21 01:58:54 +08:00
|
|
|
// Test helpers
|
|
|
|
function exists(selector) {
|
|
|
|
return !!count(selector);
|
|
|
|
}
|
|
|
|
|
|
|
|
function count(selector) {
|
|
|
|
return find(selector).length;
|
|
|
|
}
|
|
|
|
|
|
|
|
function present(obj, text) {
|
2013-06-21 05:20:08 +08:00
|
|
|
ok(!Ember.isEmpty(obj), text);
|
2013-06-21 01:58:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function blank(obj, text) {
|
2013-06-21 05:20:08 +08:00
|
|
|
ok(Ember.isEmpty(obj), text);
|
|
|
|
}
|
|
|
|
|
|
|
|
function containsInstance(collection, klass, text) {
|
|
|
|
ok(klass.detectInstance(_.first(collection)), text);
|
2014-01-24 03:31:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function not(state, message) {
|
|
|
|
ok(!state, message);
|
|
|
|
}
|