mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-22 16:20:58 +00:00
Revert "Add iteration global tests"
This reverts commit 4634c7dba95e9b0cfe2d9db38d09fb337710c53d.
This commit is contained in:
parent
4634c7dba9
commit
b8c8e30431
@ -1 +0,0 @@
|
|||||||
Subproject commit f0c62b7e4637badb324e782c97169560e8171032
|
|
@ -2,7 +2,6 @@ local testing = require('testing_util')
|
|||||||
local core = require('openmw.core')
|
local core = require('openmw.core')
|
||||||
local async = require('openmw.async')
|
local async = require('openmw.async')
|
||||||
local util = require('openmw.util')
|
local util = require('openmw.util')
|
||||||
local world = require('openmw.world')
|
|
||||||
|
|
||||||
local function testTimers()
|
local function testTimers()
|
||||||
testing.expectAlmostEqual(core.getGameTimeScale(), 30, 'incorrect getGameTimeScale() result')
|
testing.expectAlmostEqual(core.getGameTimeScale(), 30, 'incorrect getGameTimeScale() result')
|
||||||
@ -65,28 +64,6 @@ local function testGetGMST()
|
|||||||
testing.expectEqual(core.getGMST('Level_Up_Level2'), 'something')
|
testing.expectEqual(core.getGMST('Level_Up_Level2'), 'something')
|
||||||
end
|
end
|
||||||
|
|
||||||
local function testMWScript()
|
|
||||||
local variableStoreCount = 18
|
|
||||||
local variableStore = world.mwscript.getGlobalVariables(player)
|
|
||||||
testing.expectEqual(variableStoreCount,#variableStore)
|
|
||||||
|
|
||||||
variableStore.year = variableStoreCount
|
|
||||||
testing.expectEqual(variableStoreCount,variableStore.year)
|
|
||||||
variableStore.year = 1
|
|
||||||
local indexCheck = 0
|
|
||||||
for index, value in ipairs(variableStore) do
|
|
||||||
testing.expectEqual(variableStore[index],value)
|
|
||||||
indexCheck = indexCheck + 1
|
|
||||||
end
|
|
||||||
testing.expectEqual(variableStoreCount,indexCheck)
|
|
||||||
indexCheck = 0
|
|
||||||
for index, value in pairs(variableStore) do
|
|
||||||
testing.expectEqual(variableStore[index],value)
|
|
||||||
indexCheck = indexCheck + 1
|
|
||||||
end
|
|
||||||
testing.expectEqual(variableStoreCount,indexCheck)
|
|
||||||
end
|
|
||||||
|
|
||||||
local function initPlayer()
|
local function initPlayer()
|
||||||
player:teleport('', util.vector3(4096, 4096, 867.237), util.transform.identity)
|
player:teleport('', util.vector3(4096, 4096, 867.237), util.transform.identity)
|
||||||
coroutine.yield()
|
coroutine.yield()
|
||||||
@ -124,7 +101,6 @@ tests = {
|
|||||||
end},
|
end},
|
||||||
{'teleport', testTeleport},
|
{'teleport', testTeleport},
|
||||||
{'getGMST', testGetGMST},
|
{'getGMST', testGetGMST},
|
||||||
{'mwscript', testMWScript},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user