mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00

This is a major update for Stardew Valley, for version 3.x.x. Changes include a large number of new features, including Seasons Randomizer, SeedShuffle, Museumsanity, Friendsanity, Complete Collection Goal, Full House Goal, friendship multiplier Co-authored-by: Jouramie <jouramie@hotmail.com>
17 lines
516 B
Python
17 lines
516 B
Python
import unittest
|
|
|
|
from ..data.bundle_data import all_bundle_items
|
|
|
|
|
|
class TestBundles(unittest.TestCase):
|
|
def test_all_bundle_items_have_3_parts(self):
|
|
for bundle_item in all_bundle_items:
|
|
name = bundle_item.item.name
|
|
assert len(name) > 0
|
|
id = bundle_item.item.item_id
|
|
assert (id > 0 or id == -1)
|
|
amount = bundle_item.amount
|
|
assert amount > 0
|
|
quality = bundle_item.quality
|
|
assert quality >= 0
|