コード例 #1
0
ファイル: agiloticket_test.py プロジェクト: nagyist/agilo
 def test_story_has_total_remaining_time_and_estimated_remaining_time_by_default(
         self):
     story = AgiloTicket(self.env, t_type=Type.USER_STORY)
     self.assert_equals(
         [Key.TOTAL_REMAINING_TIME, Key.ESTIMATED_REMAINING_TIME],
         story.get_calculated_fields_names())
コード例 #2
0
ファイル: agiloticket_test.py プロジェクト: djangsters/agilo
 def test_story_has_total_remaining_time_and_estimated_remaining_time_by_default(self):
     story = AgiloTicket(self.env, t_type=Type.USER_STORY)
     self.assert_equals([Key.TOTAL_REMAINING_TIME, Key.ESTIMATED_REMAINING_TIME], 
                        story.get_calculated_fields_names())