Skip to content

Commit

Permalink
Split tests in test_lua.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ThanatosGit committed Jan 8, 2024
1 parent 960a54f commit 8323fa1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/formats/test_lua.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,10 @@
"""


def test_build_lua():
def test_build_lua_sr():
lua_sr = Lua(Container(lua_text=lua_str), Game.SAMUS_RETURNS)
assert lua_sr.build() == _SR_COMPILED_LUA

def test_build_lua_dread():
lua_dread = Lua(Container(lua_text=lua_str), Game.DREAD)
assert lua_dread.build() == _DREAD_COMPILED_LUA

0 comments on commit 8323fa1

Please sign in to comment.