Created
December 6, 2010 13:18
-
-
Save wtnabe/730267 to your computer and use it in GitHub Desktop.
QUnit example without jQuery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
"http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<link rel="stylesheet" href="http://github.com/jquery/qunit/raw/master/qunit/qunit.css" type="text/css" media="screen" /> | |
<script type="text/javascript" src="http://github.com/jquery/qunit/raw/master/qunit/qunit.js"></script> | |
<script> | |
test("a basic test example", function() { | |
ok( true, "this test is fine" ); | |
var value = "hello"; | |
equals( "hello", value, "We expect value to be hello" ); | |
}); | |
module("Module A"); | |
test("first test within module", function() { | |
ok( true, "all pass" ); | |
}); | |
test("second test within module", function() { | |
ok( true, "all pass" ); | |
}); | |
module("Module B"); | |
test("some other test", function() { | |
expect(2); | |
equals( true, false, "failing test" ); | |
equals( true, true, "passing test" ); | |
}); | |
</script> | |
</head> | |
<body> | |
<h1 id="qunit-header">QUnit example</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, will be hidden</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment