File: TestData.pm

package info (click to toggle)
libpdf-table-perl 1%3A1.006-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 532 kB
  • sloc: perl: 3,841; makefile: 17
file content (16 lines) | stat: -rw-r--r-- 214 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package TestData;
use strict;
use warnings;

our %test = ( a => 1 );

our %required = (
    x       => 10,
    w       => 300,
    y       => 700,
    next_y  => 600,
    h       => 100,
    next_h  => 500,
);

1;