* Tests that a metadata configuration is still there after someone saves a page.
*
* @throws Exception if so.
*/
public void testConfigRoundtrip() throws Exception {
DumbSlave slave = createSlave();
String name = slave.getNodeName();
MetadataNodeProperty property = new MetadataNodeProperty(new LinkedList<MetadataValue>());
slave.getNodeProperties().add(property);
TreeStructureUtil.addValue(property, "test", "description", "some", "kind", "of", "path");
this.configRoundtrip(slave);
Node node = Hudson.getInstance().getNode(name);