2011-02-22 19:48:37 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
var winetest = new ActiveXObject("Wine.Test");
|
|
|
|
|
|
|
|
function ok(expr, msg) {
|
|
|
|
winetest.ok(expr, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
ok(typeof(WScript) === "object", "typeof(WScript) = " + typeof(WScript));
|
|
|
|
ok(typeof(WSH) === "object", "typeof(WSH) = " + typeof(WSH));
|
|
|
|
ok(WScript === WSH, "WScript !== WSH");
|
2011-06-28 13:37:36 +02:00
|
|
|
ok(WScript.Name === "Windows Script Host", "WScript.Name = " + WScript.Name);
|
2011-06-28 13:38:56 +02:00
|
|
|
ok(typeof(WScript.Version) === "string", "typeof(WScript.Version) = " + typeof(WScript.Version));
|
2011-07-04 23:28:52 +02:00
|
|
|
ok(typeof(WScript.BuildVersion) === "number", "typeof(WScript.BuldVersion) = " + typeof(WScript.BuldVersion));
|
2011-07-20 21:47:18 +02:00
|
|
|
ok(WScript.FullName === winetest.wscriptFullName, "WScript.FullName = ", WScript.FullName);
|
2011-07-20 21:47:29 +02:00
|
|
|
ok(WScript.Path === winetest.wscriptPath, "WScript.Path = ", WScript.Path);
|
2011-02-22 19:48:37 +01:00
|
|
|
|
|
|
|
winetest.reportSuccess();
|