[Policy] Add spec for policy provider

Add spec for policy provider, WTD-973.
This commit is contained in:
Victor Woeltjen
2015-04-01 13:48:58 -07:00
parent cc45673054
commit d46f3b9132
3 changed files with 102 additions and 0 deletions

View File

@ -0,0 +1,14 @@
/*global define*/
define(
[],
function () {
"use strict";
function PolicyProvider(policies) {
}
return PolicyProvider;
}
);