Rename test fixture directory with dot

This prevents it from being seen as a mod.
This commit is contained in:
Jude Melton-Houghton 2022-06-01 09:01:00 -04:00
parent 497d362b85
commit 189777eef2
9 changed files with 6 additions and 6 deletions

View File

@ -48,12 +48,12 @@ local test_conf = {
},
}
files["*/spec/*.lua"] = test_conf
files["test_fixtures/*.lua"] = test_conf
files[".test_fixtures/*.lua"] = test_conf
files["test_fixtures/screwdriver.lua"] = {
files[".test_fixtures/screwdriver.lua"] = {
globals = {"screwdriver"},
}
files["test_fixtures/mesecons_fpga.lua"] = {
files[".test_fixtures/mesecons_fpga.lua"] = {
globals = {"minetest.register_on_player_receive_fields"},
}

View File

@ -1 +1 @@
fixture_paths = {"../test_fixtures"}
fixture_paths = {"../.test_fixtures"}

View File

@ -1 +1 @@
fixture_paths = {"../test_fixtures"}
fixture_paths = {"../.test_fixtures"}

View File

@ -1 +1 @@
fixture_paths = {"../test_fixtures"}
fixture_paths = {"../.test_fixtures"}