/*global define,describe,it,expect,beforeEach,jasmine*/ define( ["../../src/policies/EditActionPolicy"], function (EditActionPolicy) { "use strict"; describe("The Edit action policy", function () { it("allows the edit action when there are editable views", function () { }); it("allows the edit properties action when there are no editable views", function () { }); it("disallows the edit action when there are no editable views", function () { }); it("disallows the edit properties action when there are editable views", function () { }); it("allows the edit properties outside of the 'view-control' category", function () { }); }); } );