File: 01load.t

package info (click to toggle)
libstring-format-perl 1.18-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 132 kB
  • sloc: perl: 173; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 407 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env perl
# vim: set ft=perl ts=4 sw=4:

# ======================================================================
# This is your basic "Do I compile?" test.
# ======================================================================

use strict;
use Test::More tests => 2;

my @warnings;
$SIG{__WARN__} = sub { push @warnings, @_ };
use_ok('String::Format');
is_deeply \@warnings, [], 'No warnings';