you sure?')">Delete</a> <a href="/items/7/delete" onclick="return confirm('Are you sure?')">Delete</a> <a href="/items/8/delete" onclick="return confirm('Are you sure?')">Delete</a> <a href="/items/9/delete" onclick="return confirm('Are you sure?')">Delete</a> <a href="/items/10/delete" onclick="return confirm('Are you sure?')">Delete</a> Saturday, November 5, 11
test is fine" ); var value = "hello"; equal( value, "hello", "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); equal( true, false, "failing test" ); equal( true, true, "passing test" ); }); Saturday, November 5, 11
test is fine" ); var value = "hello"; equal( value, "hello", "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); equal( true, false, "failing test" ); equal( true, true, "passing test" ); }); Saturday, November 5, 11
When I go to the home page And I follow "Books" And I follow "Customize" And I press "Add to Cart" And I select "Standard ($7.99)" from "Shipping" And I press "Checkout" Then I should see "Order Confirmation" Saturday, November 5, 11
alert @name + " moved #{meters}m." class Snake extends Animal move: -‐> alert "Slithering..." super 5 class Horse extends Animal move: -‐> alert "Galloping..." super 45 sam = new Snake "Sammy the Python" tom = new Horse "Tommy the Palomino" sam.move() tom.move() Saturday, November 5, 11