ember-rocks
Version:
An Em(ber) command line utility to help you build an ambitious web application
13 lines (11 loc) • 407 B
JavaScript
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
import Ember from 'ember';
import __NAMESPACE__ from 'rocks/mixins/__DASHERIZE_NAMESPACE__';
describe('__NAMESPACE__', function () {
// Replace this with your real tests.
it('works', function () {
var __NAMESPACE__Object = Ember.Object.extend(__NAMESPACE__);
var subject = __NAMESPACE__Object.create();
subject.should.be.ok;
});
});