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