Added explicit module names to the new unit tests.
This commit is contained in:
parent
2764127335
commit
4130319e97
|
@ -1,3 +1,5 @@
|
|||
module("attributes");
|
||||
|
||||
test("attr(String)", function() {
|
||||
expect(27);
|
||||
equals( jQuery('#text1').attr('value'), "Test", 'Check for value attribute' );
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
module("css");
|
||||
|
||||
test("css(String|Hash)", function() {
|
||||
expect(19);
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
module("manipulation");
|
||||
|
||||
test("text()", function() {
|
||||
expect(1);
|
||||
var expected = "This link has class=\"blog\": Simon Willison's Weblog";
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
module("traversing");
|
||||
|
||||
test("end()", function() {
|
||||
expect(3);
|
||||
equals( 'Yahoo', jQuery('#yahoo').parent().end().text(), 'Check for end' );
|
||||
|
|
Loading…
Reference in a new issue