HomeBrewExercisesOnPython/DiveIntoPython3

chap3.q0007, q0008 の test_docstring テストケースが通らない

Closed this issue · 1 comments

恐らくテスト対象として参照している関数が違っています。
テストファイル内で

    def test_docstring(self):
        self.assertIsNotNone(q0007.foo.__doc__)

    def test_zero(self):
        self.assertEqual({}, q0007.circular(0))

上記のようになっており、関数名はcircularで実装を行うため
fooの部分がcircularかと思われます。