example/spec/hoopty_spec.js in snapdragon-0.1.5 vs example/spec/hoopty_spec.js in snapdragon-0.1.6

- old
+ new

@@ -16,9 +16,16 @@ }); describe(".hello", function() { it("says hello there", function() { var f = new Hoopty(); - expect(f.hello()).toBe("Hello There"); + expect(f.hello()).toBe("Hello There aeuaeuo"); + }); + }); + + describe(".goodbye", function() { + it("says goodbye", function() { + var f = new Hoopty(); + expect(f.goodbye()).toBe("goodbye"); }); }); });