diff options
author | Endi Sukma Dewata <edewata@redhat.com> | 2010-09-28 10:19:05 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-09-28 10:20:14 -0400 |
commit | d966056bb0e24693fcd05be690f724e921492df3 (patch) | |
tree | e86d058f0dd3a43c0123faec6e017e1829fc2325 /install/static/test/association_tests.html | |
parent | 370c1c3e0e1fb357bbecc4b1e4a59e822e942548 (diff) | |
download | freeipa.git-d966056bb0e24693fcd05be690f724e921492df3.tar.gz freeipa.git-d966056bb0e24693fcd05be690f724e921492df3.tar.xz freeipa.git-d966056bb0e24693fcd05be690f724e921492df3.zip |
Test suite for association.
New test cases have been added to test SerialAssociator and
BulkAssociator using mockup objects. Also fixed a bug in BulkAssociator.
Moved switch_view() out of ipa_entity_generate_views() in entity.js
to allow unit testing using mockup objects. Updated the test case
to validate click event on facets.
Diffstat (limited to 'install/static/test/association_tests.html')
-rw-r--r-- | install/static/test/association_tests.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/install/static/test/association_tests.html b/install/static/test/association_tests.html new file mode 100644 index 00000000..5b5fb717 --- /dev/null +++ b/install/static/test/association_tests.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<head> + <title>Association Test Suite</title> + <link rel="stylesheet" href="qunit.css" type="text/css" media="screen"> + <script type="text/javascript" src="qunit.js"></script> + <script type="text/javascript" src="../jquery.js"></script> + <script type="text/javascript" src="../ipa.js"></script> + <script type="text/javascript" src="../details.js"></script> + <script type="text/javascript" src="../search.js"></script> + <script type="text/javascript" src="../add.js"></script> + <script type="text/javascript" src="../associate.js"></script> + <script type="text/javascript" src="association_tests.js"></script> +</head> +<body> + <h1 id="qunit-header">Association Test Suite</h1> + <h2 id="qunit-banner"></h2> + <div id="qunit-testrunner-toolbar"></div> + <h2 id="qunit-userAgent"></h2> + <ol id="qunit-tests"></ol> + <div id="qunit-fixture">test markup</div> +</body> +</html> |