File: default-headers

package info (click to toggle)
libtest-differences-perl 0.72-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 192 kB
  • sloc: perl: 498; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 170 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
use strict;
use warnings;

use Test::More;
use Test::Differences;
END { done_testing(); }

eq_or_diff(
    { foo => 'bar' },
    { foo => 'baz' },
    "both the same"
);