Exemple #1
0
 def test_chg_form_hausnr_field_help_text(self):
     form = StandortChgForm()
     self.assertEqual(form.fields['hausnr'].label, 'Hausnr')
Exemple #2
0
 def test_chg_form_name_field_label(self):
     form = StandortChgForm()
     self.assertTrue(form.fields['name'].label == 'Name')
Exemple #3
0
 def test_chg_form_strasse_field_help_text(self):
     form = StandortChgForm()
     self.assertEqual(form.fields['strasse'].label, 'Strasse')
Exemple #4
0
 def test_chg_form_ort_field_label(self):
     form = StandortChgForm()
     self.assertTrue(form.fields['ort'].label == 'Ort')
Exemple #5
0
 def test_chg_form_mobil_field_help_text(self):
     form = StandortChgForm()
     self.assertEqual(form.fields['mobil'].help_text, '0150-1111')
Exemple #6
0
 def test_chg_form_mobil_field_label(self):
     form = StandortChgForm()
     self.assertTrue(form.fields['mobil'].label == 'Mobil')
Exemple #7
0
 def test_chg_form_name_field_help_text(self):
     form = StandortChgForm()
     self.assertEqual(form.fields['name'].help_text, 'Name, Vorname')