2017-05-16 18:06:34 -04:00
|
|
|
export default class ClassSpecHelper {
|
2017-01-04 07:01:14 -05:00
|
|
|
static itShouldBeAStaticMethod(base, method) {
|
|
|
|
return it('should be a static method', () => {
|
|
|
|
expect(Object.prototype.hasOwnProperty.call(base, method)).toBeTruthy();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2017-02-02 14:17:38 -05:00
|
|
|
|
|
|
|
window.ClassSpecHelper = ClassSpecHelper;
|