:- module(imodule_client_test,[
	      client_test/0
	  ]).

:- use_module(library(imodule)).

:- iuse_module('127.0.0.1',8123,[
                                cacert_file('cert.pem'),
                                cert_verify_hook(cert_accept_any)
                            ]).

client_test:-
	password(P),
	P == '\
I swear by my life and my love of it that\
I will never live for the sake of another man,\
nor ask another man to live for mine.'.
