@Test
public void shouldNotUseRef2() throws Exception{
User user = new User();
user.setName("NewCategory");
AnotherPojo anotherPojo = PojoBuilder.createAnotherPojo(user);
Monjo<ObjectId, AnotherPojo> monjoComplex = new Monjo<ObjectId, AnotherPojo>(getMongoDB(), AnotherPojo.class);
monjoComplex.removeAll();
monjoComplex.insert(anotherPojo);
MonjoCursor<AnotherPojo> monjoCursor = monjoComplex.find();
AnotherPojo anotherPojo2 = monjoCursor.toList().get(0);
assertEquals("NewCategory", anotherPojo2.getUser().getName());
}