Trigger checking MaintainUsers priv before updating table to avoid bug 24255
[xtuple] / test / specs / site.js
1 /*jshint trailing:true, white:true, indent:2, strict:true, curly:true,
2   immed:true, eqeqeq:true, forin:true, latedef:true,
3   newcap:true, noarg:true, undef:true */
4 /*global describe:true, it:true, XT:true, XM:true, XV:true, process:true,
5   module:true, require:true, exports:true */
6
7   (function () {
8   "use strict";
9
10   /**
11   Sites typically describe physical production and storage facilities. work centers, item sites, and site locations belong to sites.
12   @class
13   @alias Site
14   **/
15   exports.spec = {
16     skipAll: true,
17     // XXX very awkward
18     recordType: "XM.Site"
19   };
20   var additionalTests = function () {
21     /**
22       @member Setup
23       @memberof Site.prototype
24       @description Multiple Item Sites should not be allowed on Postbooks
25     */
26     it.skip("Multiple Item Sites should not be allowed on Postbooks", function () {
27     });
28 };
29
30   exports.additionalTests = additionalTests;
31 }());