first prototype of external storage and tests
[dbsrgits/DBIx-Class-Fixtures.git] / lib / DBIx / Class / Fixtures / DBI.pm
1 package DBIx::Class::Fixtures::DBI;
2
3 use strict;
4 use warnings;
5
6 sub do_insert {
7   my ($class, $schema, $sub) = @_;
8
9   $schema->txn_do($sub);
10 }
11
12 1;