Adds new QUnit assertion ("not") complementary to built-in "ok"
This commit is contained in:
parent
e3a151d66a
commit
5166abd75f
|
@ -14,6 +14,7 @@
|
|||
"integration",
|
||||
"test",
|
||||
"ok",
|
||||
"not",
|
||||
"expect",
|
||||
"equal",
|
||||
"blank",
|
||||
|
|
|
@ -17,4 +17,8 @@ function blank(obj, text) {
|
|||
|
||||
function containsInstance(collection, klass, text) {
|
||||
ok(klass.detectInstance(_.first(collection)), text);
|
||||
}
|
||||
}
|
||||
|
||||
function not(state, message) {
|
||||
ok(!state, message);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue