File: types.t

package info (click to toggle)
libpod-elemental-perl 0.103006-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 396 kB
  • sloc: perl: 1,471; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use warnings;

use Test::More;

use Pod::Elemental::Types -all;

is(
  to_ChompedString("this is a string\n"),
  "this is a string",
  "we can 'autochomp'",
);

done_testing;