File: context.t

package info (click to toggle)
libchart-clicker-perl 2.90-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 696 kB
  • sloc: perl: 4,379; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
use Test::More;

BEGIN {
    use_ok('Chart::Clicker::Context');
}

my $c = Chart::Clicker::Context->new(name => 'default');

cmp_ok($c->name, 'eq', $c->name, 'name');

done_testing;