diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2012-12-04 19:34:21 +0100 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2013-01-18 15:10:37 +0100 |
commit | 5d919c9556345a8c230dbd3c43b52a0b9f066773 (patch) | |
tree | 72eb825b9ee8c24429deb60f5b9e3701779ff089 /install/ui/test/aci_tests.js | |
parent | c71937fc0c2006c032948c564246822cb7344aa9 (diff) | |
download | freeipa-5d919c9556345a8c230dbd3c43b52a0b9f066773.tar.gz freeipa-5d919c9556345a8c230dbd3c43b52a0b9f066773.tar.xz freeipa-5d919c9556345a8c230dbd3c43b52a0b9f066773.zip |
Change tests to use AMD loader
Test were modified accordingly to AMD changes.
https://fedorahosted.org/freeipa/ticket/112
Diffstat (limited to 'install/ui/test/aci_tests.js')
-rw-r--r-- | install/ui/test/aci_tests.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/install/ui/test/aci_tests.js b/install/ui/test/aci_tests.js index 52fdc6037..fa1e971b1 100644 --- a/install/ui/test/aci_tests.js +++ b/install/ui/test/aci_tests.js @@ -18,6 +18,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +define(['freeipa/ipa', 'freeipa/jquery', 'freeipa/aci'], function(IPA, $) { + return function() { var target_container; var target_widget; @@ -286,5 +288,4 @@ test("Testing subtree target.", function() { same(get_visible_rows(target_widget), ['memberof', 'subtree', 'attrs_multi'], 'subtree row visible'); }); - - +};});
\ No newline at end of file |