зеркало из https://github.com/mozilla/pjs.git
JavaScript Tests - catch exception, bug 355556
This commit is contained in:
Родитель
b77cb63ab8
Коммит
88e2666cd7
|
@ -50,8 +50,16 @@ function test()
|
|||
enterFunc ('test');
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
(function () { eval("'foo'.b()", arguments) })()
|
||||
|
||||
expect = 'TypeError: "foo".b is not a function';
|
||||
try
|
||||
{
|
||||
(function () { eval("'foo'.b()", arguments) })();
|
||||
}
|
||||
catch(ex)
|
||||
{
|
||||
actual = ex + '';
|
||||
}
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
|
|
Загрузка…
Ссылка в новой задаче