[Representation] Add skeleton specs

Add empty specs for all scripts introduced for the
representation component. WTD-521.
This commit is contained in:
Victor Woeltjen
2014-11-22 09:36:30 -08:00
parent 5f43c40afe
commit dcb4f2a4d4
7 changed files with 90 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
/*global define,Promise*/
/**
* Module defining ContextMenuGestureSpec. Created by vwoeltje on 11/22/14.
*/
define(
["../../src/gestures/ContextMenuGesture"],
function (ContextMenuGesture) {
"use strict";
/**
*
* @constructor
*/
function ContextMenuGestureSpec() {
return {};
}
return ContextMenuGestureSpec;
}
);

View File

@@ -0,0 +1,15 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
/**
* DragGestureSpec. Created by vwoeltje on 11/6/14.
*/
define(
["../../src/gestures/DragGesture"],
function (DragGesture) {
"use strict";
describe("", function () {
});
}
);

View File

@@ -0,0 +1,15 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
/**
* DropGestureSpec. Created by vwoeltje on 11/6/14.
*/
define(
["../../src/gestures/DropGesture"],
function (DropGesture) {
"use strict";
describe("", function () {
});
}
);