@Test
public void testC6_GhostMovesToFood() throws FactoryException {
Game game = makePlay("G.#");
Ghost theGhost = (Ghost) game.getBoard().spriteAt(0, 0);
game.moveGhost(theGhost, Direction.RIGHT);
assertEquals("Ghost moved", tileAt(game, 1, 0), theGhost.getTile());
game.moveGhost(theGhost, Direction.LEFT);
assertEquals(SpriteType.FOOD, game.getBoard().spriteTypeAt(1, 0));
}