scsh 1.29.12

Scoped Skills Helper — preflight a git repo and run its scoped skills in ephemeral containers.
1
2
3
4
5
6
7
8
9
10
11
12
import unittest

from wordstats import top_words


class WordStatsTests(unittest.TestCase):
    def test_counts_words_case_insensitively(self):
        self.assertEqual(top_words("Pear apple pear"), [("pear", 2), ("apple", 1)])


if __name__ == "__main__":
    unittest.main()