hatchimera / tests /test_formatter.py
arkai2025's picture
feat(share): Quick Draw!-style lineage GIF share flow + voxel build animation
8ca9c78
Raw
History Blame Contribute Delete
337 Bytes
import sys; sys.path.insert(0, "src")
from buddy_fusion.formatter import share_text
from buddy_fusion.fallback import fallback_genome
def test_share_text_mentions_name_and_hashtag():
g = fallback_genome(1)
text = share_text(g)
assert g.name in text
assert "#BuildSmallHackathon" in text
assert "Hatchimera" in text