-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bbc70c0
commit 2699bdc
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
import pytest | ||
from tests.test_lib import parse_build_compare_editor | ||
|
||
from mercury_engine_data_structures import samus_returns_data | ||
from mercury_engine_data_structures import samus_returns_data, dread_data | ||
from mercury_engine_data_structures.formats.blsnd import Blsnd | ||
|
||
all_sr_blsnd = [name for name in samus_returns_data.all_name_to_asset_id().keys() | ||
if name.endswith(".blsnd")] | ||
|
||
all_dread_blsnd = [name for name in dread_data.all_name_to_asset_id().keys() | ||
if name.endswith(".blsnd")] | ||
|
||
@pytest.mark.parametrize("blsnd_path", all_sr_blsnd) | ||
def test_blsnd(samus_returns_tree, blsnd_path): | ||
parse_build_compare_editor(Blsnd, samus_returns_tree, blsnd_path) | ||
|
||
@pytest.mark.parametrize("blsnd_path", all_dread_blsnd) | ||
def test_blsnd_dread(dread_file_tree, blsnd_path): | ||
parse_build_compare_editor(Blsnd, dread_file_tree, blsnd_path) |