File: control

package info (click to toggle)
libtest-dbix-class-perl 0.52-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,088 kB
  • sloc: perl: 2,193; makefile: 2
file content (73 lines) | stat: -rw-r--r-- 3,316 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Source: libtest-dbix-class-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Mason James <mtj@kohaaloha.com>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libconfig-any-perl <!nocheck>,
                     libdata-uuid-perl <!nocheck>,
                     libdata-visitor-perl <!nocheck>,
                     libdatetime-format-sqlite-perl <!nocheck>,
                     libdbd-sqlite3-perl <!nocheck>,
                     libdbix-class-perl <!nocheck>,
                     libdbix-class-schema-populatemore-perl <!nocheck>,
                     libdbix-class-timestamp-perl <!nocheck>,
                     libdbix-class-uuidcolumns-perl <!nocheck>,
                     libhash-merge-perl <!nocheck>,
                     liblist-moreutils-perl <!nocheck>,
                     libmodule-runtime-perl <!nocheck>,
                     libmoose-perl <!nocheck>,
                     libmoosex-attribute-env-perl <!nocheck>,
                     libmoosex-types-perl <!nocheck>,
                     libpath-class-perl <!nocheck>,
                     libscalar-list-utils-perl <!nocheck>,
                     libsql-translator-perl <!nocheck>,
                     libsub-exporter-perl <!nocheck>,
                     libtest-deep-perl <!nocheck>,
                     libtest-differences-perl <!nocheck>,
                     libtest-simple-perl <!nocheck>,
                     perl
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libtest-dbix-class-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libtest-dbix-class-perl.git
Homepage: https://metacpan.org/release/Test-DBIx-Class
Rules-Requires-Root: no

Package: libtest-dbix-class-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libconfig-any-perl,
         libdata-uuid-perl,
         libdata-visitor-perl,
         libdbix-class-perl,
         libdbix-class-schema-populatemore-perl,
         libdbix-class-timestamp-perl,
         libdbix-class-uuidcolumns-perl,
         libhash-merge-perl,
         liblist-moreutils-perl,
         libmodule-runtime-perl,
         libmoose-perl,
         libmoosex-attribute-env-perl,
         libmoosex-types-perl,
         libpath-class-perl,
         libscalar-list-utils-perl,
         libsql-translator-perl,
         libsub-exporter-perl,
         libtest-deep-perl,
         libtest-simple-perl
Description: Perl module for creating test cases for DBIx::Class applications
 Test::DBIx::Class attempts to make it easier to write test cases for your
 DBIx::Class based applications. It does this in three ways.
 .
 First, it tries to make it easy to deploy your Schema. This can be to your
 dedicated testing database, or a simple SQLite database. This allows you to
 run tests without interfering with your development work and having to stop
 and set up a testing database instance.
 .
 Second, it allows you to load test fixtures via several different tools.
 .
 Last it creates some helper functions in your test script so that you can
 reduce repeated or boilerplate code. Overall, the module attempt to reduce
 the amount of code you have to write before you can begin writing tests.