def test_images_command_with_all_args(self):
        self.command = DockerCli112.ImagesCommand(image="alpine:latest",
                                                  all_images=True,
                                                  digests=True,
                                                  image_filter="some_filter",
                                                  output_format="{{ json }}",
                                                  no_trunc=True,
                                                  quiet=True)

        self.typical_command_assertions("images", "alpine:latest", "--all",
                                        "--digests",
                                        ["--filter", "some_filter"],
                                        ["--format", "{{ json }}"],
                                        "--no-trunc", "--quiet")
    def test_images_command(self):
        self.command = DockerCli112.ImagesCommand()

        self.typical_command_assertions("images")