File: DBICDHTest.pm

package info (click to toggle)
libdbix-class-deploymenthandler-perl 0.002234-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: perl: 4,139; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 147 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
package DBICDHTest;

use strict;
use warnings;

use DBI;

sub dbh {
  DBI->connect('dbi:SQLite::memory:', undef, undef, { RaiseError => 1 })
}

1;