This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX - DY!Nefaria S2 recognized as having attacking hits (where it sho…
…uld not) Signed-off-by: RaenonX <[email protected]>
- Loading branch information
Showing
2 changed files
with
28 additions
and
3 deletions.
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
11 changes: 11 additions & 0 deletions
11
tests/test_transformer/test_skill/test_atk_chara/test_nefaria_dragonyule.py
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import pytest | ||
|
||
from dlparse.errors import HitDataUnavailableError | ||
from dlparse.transformer import SkillTransformer | ||
|
||
|
||
def test_s2_no_atk_data(transformer_skill: SkillTransformer): | ||
# Dragonyule Nefaria S2 | ||
# https://dragalialost.gamepedia.com/Dragonyule_Nefaria | ||
with pytest.raises(HitDataUnavailableError): | ||
transformer_skill.transform_attacking(106402022) |