OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/mocha/tests/models/sortation_test.js

21 lines
426 B

/*jshint expr: true*/
describe('Sortation', function() {
var Sortation;
beforeEach(module('openproject.models'));
beforeEach(inject(function(_Sortation_) {
Sortation = _Sortation_;
}));
it('should exist', function() {
expect(Sortation).to.exist;
});
it('should be a constructor function', function() {
expect(new Sortation()).to.exist;
expect(new Sortation()).to.be.an('object');
});
});