public void testParentWithGroup() throws Exception
{
fact().register(Father.class);
fact().register(ChildWithGroup.class);
Father f = new Father();
f.foo = "foo";
ofy().save().entity(f).now();
ChildWithGroup ch = new ChildWithGroup();
ch.father = Ref.create(Key.create(f));