ember-rocks
Version:
An Em(ber) command line utility to help you build an ambitious web application
20 lines (18 loc) • 355 B
JavaScript
import {
describeModule,
it
} from 'ember-mocha';
describeModule(
'route:__DASHERIZE_NAMESPACE__',
'__NAMESPACE__',
{
// Specify the other units that are required for this test.
// needs: ['controller:foo']
},
function () {
it('exists', function () {
var route = this.subject();
route.should.be.ok;
});
}
);