Exemplo n.º 1
0
 def test_reporting_period_with_less_than_40_hours_failure(self):
     """ Test the timecard form when the reporting period is less than
     40 hours a week and the hours entered do not match the working hours"""
     form_data = self.form_data()
     form_data['timecardobject_set-0-hours_spent'] = '5'
     form_data['timecardobject_set-1-hours_spent'] = '5'
     formset = TimecardFormSet(form_data)
     formset.set_working_hours(16)
     self.assertFalse(formset.is_valid())
Exemplo n.º 2
0
 def test_reporting_period_with_less_than_40_hours_failure(self):
     """ Test the timecard form when the reporting period is less than
     40 hours a week and the hours entered do not match the working hours"""
     form_data = self.form_data()
     form_data['timecardobject_set-0-hours_spent'] = '5'
     form_data['timecardobject_set-1-hours_spent'] = '5'
     formset = TimecardFormSet(form_data)
     formset.set_working_hours(16)
     self.assertFalse(formset.is_valid())
Exemplo n.º 3
0
 def test_reporting_period_with_less_than_40_hours_success_save_mode(self):
     """ Test the timecard form when the reporting period is less than
     40 hours a week and you save (not submit) """
     form_data = self.form_data()
     form_data['timecardobject_set-0-hours_spent'] = '5'
     form_data['timecardobject_set-1-hours_spent'] = '5'
     formset = TimecardFormSet(form_data)
     formset.set_working_hours(16)
     formset.save_only = True
     self.assertTrue(formset.is_valid())
Exemplo n.º 4
0
 def test_reporting_period_with_less_than_40_hours_success_save_mode(self):
     """ Test the timecard form when the reporting period is less than
     40 hours a week and you save (not submit) """
     form_data = self.form_data()
     form_data['timecardobject_set-0-hours_spent'] = '5'
     form_data['timecardobject_set-1-hours_spent'] = '5'
     formset = TimecardFormSet(form_data)
     formset.set_working_hours(16)
     formset.save_only = True
     self.assertTrue(formset.is_valid())