Added tests for insert_or_update, moved Auto test to own file
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
CommitLineData
ea2e61bf 1package DBIx::Class::Core;
2
3use strict;
4use warnings;
5
4a07648a 6use base qw/DBIx::Class::Relationship::Accessor
7 DBIx::Class::Relationship::CascadeActions
b28cc0ba 8 DBIx::Class::Relationship::ProxyMethods
4a07648a 9 DBIx::Class::Relationship
0e5c2582 10 DBIx::Class::InflateColumn
b8e1e21f 11 DBIx::Class::SQL::OrderBy
12bbb339 12 DBIx::Class::SQL::Abstract
13 DBIx::Class::PK
8fe001e1 14 DBIx::Class::Table
15 DBIx::Class::SQL
510ca912 16 DBIx::Class::DB
78bab9ca 17 DBIx::Class::Exception
510ca912 18 DBIx::Class::AccessorGroup/;
ea2e61bf 19
201;
34d52be2 21
22=head1 NAME
23
24DBIx::Class::Core - Core set of DBIx::Class modules.
25
26=head1 DESCRIPTION
27
28This class just inherits from the various modules that makes
29up the Class::DBI core features.
30
31
32=head1 AUTHORS
33
34Matt S. Trout <perl-stuff@trout.me.uk>
35
36=head1 LICENSE
37
38You may distribute this code under the same terms as Perl itself.
39
40=cut
41