jquery.pep.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>jquery.pep Test Suite</title>
  6. <!-- Load local jQuery. -->
  7. <script src="../libs/jquery/jquery.js"></script>
  8. <!-- Load local QUnit (grunt requires v1.0.0 or newer). -->
  9. <link rel="stylesheet" href="../libs/qunit/qunit.css" media="screen">
  10. <script src="../libs/qunit/qunit.js"></script>
  11. <!-- Load local lib and tests. -->
  12. <script src="../src/jquery.pep.js"></script>
  13. <script src="jquery.pep_test.js"></script>
  14. <!-- Removing access to jQuery and $. But it'll still be available as _$, if
  15. you REALLY want to mess around with jQuery in the console. REMEMBER WE
  16. ARE TESTING YOUR PLUGIN HERE -->
  17. <script>window._$ = jQuery.noConflict(true);</script>
  18. </head>
  19. <body>
  20. <h1 id="qunit-header">jquery.pep Test Suite</h1>
  21. <h2 id="qunit-banner"></h2>
  22. <div id="qunit-testrunner-toolbar"></div>
  23. <h2 id="qunit-userAgent"></h2>
  24. <ol id="qunit-tests"></ol>
  25. <div id="qunit-fixture">
  26. <span>obj #1</span>
  27. <span>obj #2</span>
  28. <span>obj #3</span>
  29. </div>
  30. </body>
  31. </html>