public void shouldParseAttributesFromXml() throws ParseException {
deleteAndPopulateTables("people");
Person p = new Person();
String xml = readResource("/person.xml");
p.fromXml(xml);
p.saveIt();
p.refresh();
SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd");