remove test files that were pulled in
authorjulesstp <julianmcarlin@gmail.com>
Thu, 22 May 2014 17:05:01 +0000 (11:05 -0600)
committerjulesstp <julianmcarlin@gmail.com>
Thu, 22 May 2014 17:05:01 +0000 (11:05 -0600)
test/specs/department.js [deleted file]
test/specs/expense_category.js [deleted file]

diff --git a/test/specs/department.js b/test/specs/department.js
deleted file mode 100644 (file)
index 064e861..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-/*jshint indent:2, curly:true, eqeqeq:true, immed:true, latedef:true,
-newcap:true, noarg:true, regexp:true, undef:true, strict:true, trailing:true,
-white:true*/
-/*global XV:true, XT:true, _:true, console:true, XM:true, Backbone:true, require:true, assert:true,
-setTimeout:true, before:true, clearTimeout:true, exports:true, it:true, describe:true,
- beforeEach:true */
-
-(function () {
-  "use strict";
- /**
-    Department
-       @class
-    @alias Department
-    @property {String} id
-    @property {String} number [is the idAttribute, required] (Enter a number of the Department you want to create.)
-    @property {Item} name (Enter the name of the Department that you want to create.)
-        
-    */
-  var spec = {
-      recordType: "XM.Department",
-      skipSmoke: true,
-      skipCrud: true,
-      enforceUpperKey: true,
-    /**
-      @member Other
-      @memberof Department
-      @description Department Collection is not cached.
-    */
-      collectionType: "XM.DepartmentCollection",
-      listKind: "XV.DepartmentList",
-      instanceOf: "XM.Document",
-      cacheName: "XM.departments",
-    /**
-      @member Settings
-      @memberof Department
-      @description Department is lockable.
-    */
-      isLockable: true,
-    /**
-      @member Settings
-      @memberof Department
-      @description The ID attribute is "uuid"
-    */
-      attributes: ["id", "number", "name"],
-      requiredAttributes: ["number"],
-      idAttribute: "number",
-    /**
-      @member Setup
-      @memberof Department
-      @description Used in Products, Manufacture, Accounting and System modules
-    */
-      extensions: ["Products"],
-       /**
-      @member Privileges
-      @memberof Department
-      @description Users can create, update, and delete Departments if they have the
-      'MaintainDepartments' privilege.
-    */
-      privileges: {
-        createUpdateDelete: ["MaintainDepartments"],
-        read: true
-      }
-      
-    };
-  var additionalTests =  function () {
-   /**
-      @member Navigation
-      @memberof Department
-      @description An Action gear exists in the 'Departments' work space  with 'Delete' option:
-      */
-      it.skip("Action gear should exist in the Departments work space with 'Delete' option if" +
-      "the user has 'MaintainDepartments privilege'", function () {
-      });
-    };
-  exports.spec = spec;
-  exports.additionalTests = additionalTests;
-
-}());
diff --git a/test/specs/expense_category.js b/test/specs/expense_category.js
deleted file mode 100644 (file)
index 720adb5..0000000
+++ /dev/null
@@ -1,90 +0,0 @@
-/*jshint indent:2, curly:true, eqeqeq:true, immed:true, latedef:true,
-newcap:true, noarg:true, regexp:true, undef:true, strict:true, trailing:true,
-white:true*/
-/*global XV:true, XT:true, _:true, console:true, XM:true, Backbone:true, require:true, assert:true,
-setTimeout:true, before:true, clearTimeout:true, exports:true, it:true, describe:true,
- beforeEach:true */
-
-(function () {
-  "use strict";
- /**
-    Expense Categories are used to identify the General Ledger (G/L) Accounts to be used when processing the following:
-        • Non-Inventory Purchase Order Items
-        • Miscellaneous Voucher
-        • Miscellaneous Payables Checks
-        • Expense Transactions
-
-    @class
-    @alias ExpenseCategory
-    @property {String} id
-    @property {String} code [is the idAttribute, required] (Enter the Expense Category name.)
-    @property {String} description (Enter a brief description of the Expense Category.)
-    @property {String} isActive (Select to show the Expense Category as active. Not selecting means the Expense Category will be considered inactive. To re-activate an Expense Category, simply select this option.)
-    */
-  var spec = {
-      recordType: "XM.ExpenseCategory",
-      skipSmoke: true,
-      skipCrud: true,
-      enforceUpperKey: false,
-    /**
-      @member Other
-      @memberof ExpenseCategory
-      @description The ExpenseCategory Collection is not cached.
-    */
-      collectionType: "XM.ExpenseCategoryCollection",
-      listKind: "XV.ExpenseCategoryList",
-      instanceOf: "XM.Document",
-      cacheName: null,
-    /**
-      @member Settings
-      @memberof ExpenseCategory
-      @description ExpenseCategory is lockable.
-    */
-      isLockable: true,
-    /**
-      @member Settings
-      @memberof ExpenseCategory
-      @description The ID attribute is "code"
-    */
-      attributes: ["id", "code", "description", "isActive"],
-      requiredAttributes: ["code"],
-      idAttribute: "code",
-    /**
-      @member Setup
-      @memberof ExpenseCategory
-      @description Used in Inventory, Purchase and Accounting modules
-    */
-      extensions: ["inventory,purchasing,accounting"],
-       /**
-      @member Privileges
-      @memberof ExpenseCategory
-      @description Users can create, update, and delete ExpenseCategory if they have the 'MaintainExpenseCategories' privilege.
-    */
-      privileges: {
-        createUpdateDelete: ["MaintainExpenseCategories"],
-        read: true
-      }
-      
-    };
-  var additionalTests =  function () {
-    /**
-      @member Navigation
-      @memberof ExpenseCategory
-      @description An Action gear exists in the 'ExpenseCategories' work space  with Delete option:
-      */
-      it.skip("Action gear should exist in the ExpenseCategories work space with 'Delete' option if" +
-      "the user has 'MaintainExpenseCategories privilege'", function () {
-      });
-      /**
-      @member Buttons
-      @memberof ExpenseCategory
-      @description ExpenseCategory should exist with an Active check box in-order to activate or deactivate an ExpenseCategory
-     */
-      it.skip("ExpenseCategory should exist with an Active check box to activate or deactivate the expense category", function () {
-      });
-       };
-  exports.spec = spec;
-  exports.additionalTests = additionalTests;
-
-}());
-    
\ No newline at end of file