Ghost/core/client/tests/unit/helpers/is-not-test.js
Jason Williams 42166c8d9f Update Ember to 1.13.2
- Refactor to handle deprecations including removal of
  all Views, ArrayControllers, and ItemControllers.
2015-06-24 11:47:28 -05:00

19 lines
340 B
JavaScript

/* jshint expr:true */
import {expect} from 'chai';
import {
describe,
it
} from 'mocha';
import {
isNot
} from 'ghost/helpers/is-not';
describe('IsNotHelper', function () {
// Replace this with your real tests.
it('works', function () {
var result = isNot(false);
expect(result).to.be.ok;
});
});