~ubuntu-branches/debian/sid/libconfig-model-dpkg-perl/sid

« back to all changes in this revision

Viewing changes to t/model_tests.d/dpkg-patch-test-conf.pl

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont
  • Date: 2015-05-08 10:24:03 UTC
  • mfrom: (1.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20150508102403-5a61zoujj1kqd7vw
Tags: 2.063
* Copyright scanner:
  * to cope with owner containing 'f00' (Closes: #783932)
  * handle ranges like 2010-12 or 2002-3 (Closes: #783928)
* Dpkg::Patch: fix handling of Subject body expressed as
  free form text below header.
* Updated list of supported arch in C::M::Dpkg::Dependency
  (Closes: #782995)
* control: added build-dep on libyaml-tiny-perl

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
$skip = ( $@ or not -r '/etc/debian_version' ) ? 1 : 0;
12
12
 
13
13
@tests = (
14
 
    { 
 
14
    {
15
15
        name => 'libperl5i' ,
16
16
        config_file => $conf_file_name,
17
17
        apply_fix => 1 ,
18
18
        check => {
19
 
            'Synopsis' => 'Some patch',
 
19
            'Synopsis' => qr/test TODO/,
 
20
            'Subject' => qr/utf8/,
 
21
            'Subject' => qr/879/,
 
22
            'Subject' => qr/2012/,
20
23
            'Bug:0' => 'https://github.com/schwern/perl5i/issues/218',
21
24
            'Bug:1' => 'https://github.com/schwern/perl5i/issues/219',
22
25
            'Origin' => 'https://github.com/doherty/perl5i',
24
27
 
25
28
        },
26
29
        # file_check_sub => $del_home,
27
 
    }
 
30
    },
 
31
    {
 
32
        name => 'moarvm' ,
 
33
        config_file => $conf_file_name,
 
34
        check => {
 
35
            'Synopsis' => qr/Configure.pl/,
 
36
        }
 
37
    },
28
38
);
29
39
 
30
40