SX 6cee944770
Extended Mineunit tests (#208)
* Extended Mineunit tests

* Tests for Technic CNC

* Test node placement for all listed nodes

* Test cable plate placement
2021-11-06 09:12:08 +02:00

12 lines
347 B
Lua

mineunit:set_modpath("pipeworks", "spec/fixtures")
_G.pipeworks = {}
_G.pipeworks.button_label = ""
_G.pipeworks.fs_helpers = {}
_G.pipeworks.fs_helpers.cycling_button = function(...) return "" end
_G.pipeworks = setmetatable(_G.pipeworks, {
__call = function(self,...) return self end,
__index = function(...) return function(...)end end,
})