@Test
public void loadsSceneWithProps() throws Exception
{
fs.createTextFile("/testProduction/aScene/props.xml", "<props><child><grandchild/></child><child2/></props>");
final Opts options = Opts.with("backgroundColor", "red", "shouldAllowClose", false);
ScenePanel scene = (ScenePanel)production.loadScene("aScene", options.merge("name", "aScene", "path", "aScene"));
scene.illuminate();
assertEquals(2, scene.getChildren().size());
final PropPanel child1 = (PropPanel)scene.getChildren().get(0);
assertEquals("child", child1.getName());