port shared.ops.allocate

This commit is contained in:
Matteo Pagliazzi
2016-03-15 18:41:23 +01:00
parent fb6c927ce9
commit 219ec01ce9
11 changed files with 160 additions and 12 deletions

11
test/common/constants.js Normal file
View File

@@ -0,0 +1,11 @@
import {
ATTRIBUTES,
} from '../../common/script/constants';
describe('constants', () => {
describe('ATTRIBUTES', () => {
it('provides a list of attributes', () => {
expect(ATTRIBUTES).to.eql(['str', 'int', 'per', 'con']);
});
});
});