* Extended Mineunit tests * Tests for Technic CNC * Test node placement for all listed nodes * Test cable plate placement
12 lines
347 B
Lua
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,
|
|
})
|