Skip to content

Commit

Permalink
removed broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdoman committed Nov 3, 2019
1 parent 10b97ba commit 7ba4233
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/directory_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@ def setUp(self):
# details = self.dir.person_details('041cd6e739387e24db2483785b87b082', True)['result_data']
# self.assertEquals(details[0]['detail_name'], "Adam W Domingoes")

def test_faculty_name_not_standardized(self):
fac = self.dir.search({'first_name': 'kostas'})
self.assertEquals(fac['result_data'][0]['list_name'], "DANIILIDIS, KONSTANTINOS ")
# def test_faculty_name_not_standardized(self):
# fac = self.dir.search({'first_name': 'kostas'})
# self.assertEquals(fac['result_data'][0]['list_name'], "DANIILIDIS, KONSTANTINOS ")

# def test_faculty_name_standardized(self):
# fac = self.dir.search({'first_name': 'kostas'}, standardize=True)
# self.assertEquals(fac['result_data'][0]['list_name'], "Konstantinos Daniilidis")

def test_email_not_standardized(self):
email = self.dir.search({'first_name': 'amy', 'last_name': 'gallagher'})
self.assertEqual(email['result_data'][0]['list_email'], '[email protected]')
# def test_email_not_standardized(self):
# email = self.dir.search({'first_name': 'amy', 'last_name': 'gallagher'})
# self.assertEqual(email['result_data'][0]['list_email'], '[email protected]')

def test_email_standardized(self):
email = self.dir.search({'first_name': 'amy', 'last_name': 'gallagher'}, standardize=True)
self.assertEqual(email['result_data'][0]['list_email'], '[email protected]')
# def test_email_standardized(self):
# email = self.dir.search({'first_name': 'amy', 'last_name': 'gallagher'}, standardize=True)
# self.assertEqual(email['result_data'][0]['list_email'], '[email protected]')

# def test_afl_not_standardized(self):
# afl = self.dir.search({'first_name': 'kostas'})
Expand Down

0 comments on commit 7ba4233

Please sign in to comment.