Guest User

Untitled

a guest
Nov 14th, 2017
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. multi sub MAIN('test-mc') {
  2. use Test;
  3. plan 3;
  4. my $pi = Aero.new(host => '192.168.1.12', port => '8000');
  5. is $pi.host, '192.168.1.12', 'host is correct';
  6. is $pi.port, '8000', 'port is correct';
  7. is Aero.close, 'close the connection';
  8. }
Advertisement
Add Comment
Please, Sign In to add comment