は、これは私の関数である:例外声明
def get_value(request, param):
s = get_string(request, param)
value = re.search('(\\d\\d\\d\\d)-(\\d\\d)-(\\d\\d)', s)
if not value:
print 'match not found!'
raise Exception('incorrect format: %s' % param)
テスト機能:一致が見つかりません:
def test_get_value(self):
m = test_mocks.HttpRequestMock(REQUEST = {'start_date': '2011.07.31'})
print '*************************'
print 'date format changed'
self.assertRaises(Exception, get_value, (m, 'start_date'))
print '*********************
get_value
は、印刷はしません!
編集のためにBrenに感謝します。 –
あなたの 'helpers.get_date_param'は' get_value'を呼び出しますか? – Ian
がコールを変更しました。私はここに質問を投稿するための関数名を変更しました! –