Remove jasmine.Matchers.pp(), use jasmine.pp() instead.

This commit is contained in:
Christian Williams
2010-03-05 22:34:37 -05:00
parent 564b9a0c3e
commit a661e77345
2 changed files with 8 additions and 8 deletions

View File

@@ -554,6 +554,10 @@ describe("jasmine.Matchers", function() {
expect(function() {
match({some:'object'})[methodName]();
}).toThrow('Expected a spy, but got { some : \'object\' }.');
expect(function() {
match("<b>")[methodName]();
}).toThrow('Expected a spy, but got \'<b>\'.');
};
}