[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;
}
);