Package com.kpelykh.docker.client.model

Examples of com.kpelykh.docker.client.model.ChangeLog


    List filesystemDiff = dockerClient.containerDiff(container.getId());
    LOG.info("Container DIFF: {}", filesystemDiff.toString());

    assertThat(filesystemDiff.size(), equalTo(1));
    ChangeLog testChangeLog = selectUnique(filesystemDiff,
        hasField("path", equalTo("/test")));

    assertThat(testChangeLog, hasField("path", equalTo("/test")));
    assertThat(testChangeLog, hasField("kind", equalTo(1)));
  }
View Full Code Here

TOP

Related Classes of com.kpelykh.docker.client.model.ChangeLog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.