QUnitを使ったイベントハンドラのテスト。
href属性の値に文字列(空文字以外)が設定されているときはその文字列を返しそれ以外はfalseを返すクリックイベントのテスト。
handler.htmlのheadでQUnit関連のファイルを読み込む。
<link rel="stylesheet" href="http://code.jquery.com/qunit/git/qunit.css" media="all">
<script src="http://code.jquery.com/qunit/git/qunit.js"></script>
QUnitはjQueryに依存しない。テストでjQueryを利用しない場合は必要ない。本サンプルは利用する。
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="common.js"></script>
テストするイベントハンドラはhref属性の値に文字列(空文字以外)が設定されているときはその文字列を返す。
それ以外はfalseを返す。
<script src="handler.js"></script>
<script src="handler_test.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/qunit/git/qunit.css" media="all">
<script src="http://code.jquery.com/qunit/git/qunit.js"></script>
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="common.js"></script>
<script src="handler.js"></script>
<script src="handler_test.js"></script>
» Gist
No comments yet.
改行と段落タグは自動で挿入されます。
メールアドレスは表示されません。