[Framework] Remove temporary file

Remove temporary script file (introduced for initial
build/repository setup to illustrate naming conventions
and test declaration) from framework sources.

Completes implementation of framework layer for
WTD-518.
This commit is contained in:
Victor Woeltjen 2014-11-07 04:57:51 -08:00
parent 6dea66558f
commit 3682eb73cb
3 changed files with 0 additions and 40 deletions

View File

@ -1,22 +0,0 @@
/*global define*/
/**
* This is a temporary file. It is present to verify
* that build, including test scripts, can be executed.
*/
define(
[],
function () {
"use strict";
function Temporary() {
return {
someMethod: function () {
return "Hello, world.";
}
};
}
return Temporary;
}
);

View File

@ -1,17 +0,0 @@
/*global define,describe,it,expect*/
define(
["../src/Temporary"],
function (Temporary) {
"use strict";
describe("Temporary class", function () {
var temporary = new Temporary();
it("has a method with a return value", function () {
expect(temporary.someMethod()).toEqual("Hello, world.");
});
});
}
);

View File

@ -1,5 +1,4 @@
[
"Temporary",
"FrameworkInitializer",
"bootstrap/ApplicationBootstrapper",
"load/Bundle",