mirror of
https://github.com/arcan1s/ffxivbis.git
synced 2025-07-13 05:45:50 +00:00
initial commit
This commit is contained in:
10
test/test_loot_selector.py
Normal file
10
test/test_loot_selector.py
Normal file
@ -0,0 +1,10 @@
|
||||
from service.core.loot_selector import LootSelector
|
||||
from service.models.piece import Piece
|
||||
from service.models.player import Player
|
||||
|
||||
|
||||
def test_suggest_by_need(selector: LootSelector, player: Player, player2: Player, head_with_upgrade: Piece) -> None:
|
||||
assert selector.suggest(head_with_upgrade) == \
|
||||
[player2.player_id_with_counters(head_with_upgrade), player.player_id_with_counters(head_with_upgrade)]
|
||||
|
||||
|
Reference in New Issue
Block a user