[Core] Add skeleton specs

Add skeleton specs for platform/core, WTD-573.
This commit is contained in:
Victor Woeltjen
2014-11-20 16:15:16 -08:00
parent 71815242e2
commit a797ae8a69
23 changed files with 344 additions and 2 deletions

View 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 () {
});
}
);

View 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 () {
});
}
);

View File

@@ -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 () {
});
}
);

View File

@@ -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 () {
});
}
);

View 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 () {
});
}
);

View 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 () {
});
}
);

View 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 () {
});
}
);