コード例 #1
0
 def test_patient_first_name(self):
     try:
         patient = Patient()
         patient.first_name = 'troll'
         patient.save()
     except IntegrityError:
         return HttpResponseServerError()
     self.assertEqual(patient.first_name, 'troll')
コード例 #2
0
 def test_patient_first_name(self):
     try:
         patient = Patient()
         patient.first_name = 'troll'
         patient.save()
     except IntegrityError:
         return HttpResponseServerError()
     self.assertEqual(patient.first_name, 'troll')