Keep on moving

あんまりまとまってないことを書きますよ

2009-08-25から1日間の記事一覧

テスト勉強中(unittest編)

現在TDD勉強中です。 今回はunittestを使って、テスト駆動開発の第一章のコードを書いてみました。 import unittest from dollar import Dollar class testDollar(unittest.TestCase): def testMultiplication(self): five=Dollar(5) five.times(2) self.ass…