[Core] Add skeleton specs
Add skeleton specs for platform/core, WTD-573.
This commit is contained in:
15
platform/core/test/capabilities/CompositionCapabilitySpec.js
Normal file
15
platform/core/test/capabilities/CompositionCapabilitySpec.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
/**
|
||||
* CompositionCapabilitySpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../../src/capabilities/CompositionCapability"],
|
||||
function (CompositionCapability) {
|
||||
"use strict";
|
||||
|
||||
describe("The composition capability", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
15
platform/core/test/capabilities/ContextCapabilitySpec.js
Normal file
15
platform/core/test/capabilities/ContextCapabilitySpec.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
/**
|
||||
* ContextCapability. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../../src/capabilities/ContextCapability"],
|
||||
function (ContextCapability) {
|
||||
"use strict";
|
||||
|
||||
describe("The context capability", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
@@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
/**
|
||||
* ContextualDomainObjectSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../../src/capabilities/ContextualDomainObject"],
|
||||
function (ContextualDomainObject) {
|
||||
"use strict";
|
||||
|
||||
describe("A contextual domain object", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
@@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
/**
|
||||
* CoreCapabilityProviderSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../../src/capabilities/CoreCapabilityProvider"],
|
||||
function (CoreCapabilityProvider) {
|
||||
"use strict";
|
||||
|
||||
describe("The core capability provider", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
15
platform/core/test/capabilities/DelegationCapabilitySpec.js
Normal file
15
platform/core/test/capabilities/DelegationCapabilitySpec.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
/**
|
||||
* DelegationCapabilitySpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../../src/capabilities/DelegationCapability"],
|
||||
function (DelegationCapability) {
|
||||
"use strict";
|
||||
|
||||
describe("The delegation capability", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
15
platform/core/test/capabilities/MutationCapabilitySpec.js
Normal file
15
platform/core/test/capabilities/MutationCapabilitySpec.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
/**
|
||||
* MutationCapabilitySpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../../src/capabilities/MutationCapability"],
|
||||
function (MutationCapability) {
|
||||
"use strict";
|
||||
|
||||
describe("The mutation capability", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
15
platform/core/test/capabilities/PersistenceCapabilitySpec.js
Normal file
15
platform/core/test/capabilities/PersistenceCapabilitySpec.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
/**
|
||||
* PersistenceCapabilitySpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../../src/capabilities/PersistenceCapability"],
|
||||
function (PersistenceCapability) {
|
||||
"use strict";
|
||||
|
||||
describe("The persistence capability", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user