def test_create_event(self):
        """
        Testing event parsing
        """

        test_event_name = "Citibike Neighborhood Ride with the NYC Bike Ambassadors!"
        test_event_id = "7515"
        test_event_url = "file:" + os.sep.join([test_data_root, "transalt.org", "calendar", test_event_id])

        ta = TransaltEventDao()
        e = ta.create_event(test_event_url, test_event_name)
        self.assertEqual("Citibike Neighborhood Ride with the NYC Bike Ambassadors!", e.name)
        self.assertTrue(
            e.description.startswith("The Transportation Alternatives'") and e.description.endswith("Fort Greene Park.")
        )
        self.assertEqual(datetime(2014, 6, 14, 11, 00), e.start)
        self.assertEqual(datetime(2014, 6, 14, 13, 00), e.end)
        self.assertEqual("Meet at the Citibike dock located at Wythe Ave. & Metropolitan Ave.", e.venue)
        self.assertEqual("Wythe Ave. & Metropolitan Ave.", e.address)
        self.assertEqual("", e.cost)
        self.assertEqual("", e.rsvp_url)