File: 05_devel_spec.t

package info (click to toggle)
libfile-sharedir-projectdistdir-perl 1.000008-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 404 kB
  • ctags: 24
  • sloc: perl: 456; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

use strict;
use warnings;

use Test::More 0.96;
use FindBin;
use lib "$FindBin::Bin/05_files/lib";

use Example_05;

is( Example_05->test(), '05', 'Example 05 returns the right shared value' );

done_testing;