Drop coverage stats for sources outside of technic directory (technic_cnc, technic_worldgen) Update technic API functions for tests (were exported just for tests, now part of API) Move CNC tests, use shared fixtures for tests
19 lines
413 B
Lua
19 lines
413 B
Lua
|
|
-- Use this fixture when loading full Technic mod.
|
|
-- Loads all required modules and fixtures for technic
|
|
|
|
-- Load modules required by tests
|
|
mineunit("core")
|
|
mineunit("player")
|
|
mineunit("protection")
|
|
mineunit("common/after")
|
|
mineunit("server")
|
|
mineunit("voxelmanip")
|
|
|
|
-- Load fixtures required by tests
|
|
fixture("default")
|
|
fixture("mesecons")
|
|
fixture("digilines")
|
|
fixture("pipeworks")
|
|
fixture("technic_worldgen")
|