Added assertions for #750

This commit is contained in:
Jörn Zaefferer 2007-01-03 16:03:16 +00:00
parent 865706d2fe
commit 02483b4a59

View file

@ -1,12 +1,14 @@
module("selector"); module("selector");
test("expressions - element", function() { test("expressions - element", function() {
expect(5); expect(7);
ok( $("*").size() >= 30, "Select all" ); ok( $("*").size() >= 30, "Select all" );
t( "Element Selector", "div", ["main","foo"] ); t( "Element Selector", "div", ["main","foo"] );
t( "Element Selector", "body", ["body"] ); t( "Element Selector", "body", ["body"] );
t( "Element Selector", "html", ["html"] ); t( "Element Selector", "html", ["html"] );
t( "Parent Element", "div div", ["foo"] ); t( "Parent Element", "div div", ["foo"] );
t( "Object/Param element", "#object param", ["param1", "param2"] );
ok( $("param", $("#object")[0]).length == 2, "Object/param as context" );
}); });
test("expressions - id", function() { test("expressions - id", function() {
@ -23,6 +25,7 @@ test("expressions - id", function() {
t( "All Children of ID with no children", "#firstUL/*", [] ); t( "All Children of ID with no children", "#firstUL/*", [] );
}); });
test("expressions - class", function() { test("expressions - class", function() {
expect(4); expect(4);
t( "Class Selector", ".blog", ["mark","simon"] ); t( "Class Selector", ".blog", ["mark","simon"] );