def test_readEventList_Bad_Location(self):
     with self.assertRaises(IOError) as cm:
         ed = EventEditor("doesnt-exist.txt")
         ed._readEventList(ed.readLocation)
     self.assertEqual('[Errno 2] No such file or directory: \'doesnt-exist.txt\'',str(cm.exception))