File: 00use.t

package info (click to toggle)
libio-async-loop-mojo-perl 0.07-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 132 kB
  • sloc: perl: 181; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;

use_ok( "IO::Async::Loop::Mojo" );

# It's useful when reporting results to know what reactor type was being used
my $loop = IO::Async::Loop::Mojo->new;
my $reactor = $loop->{reactor};
diag( "Using " . ref($reactor) );

done_testing;