Move helperrels/26sqlt.t, and all t/run/*.tl scripts, to t/*.t
[dbsrgits/DBIx-Class.git] / t / 88result_set_column.t
1 use strict;
2 use warnings;  
3
4 use Test::More;
5 use lib qw(t/lib);
6 use DBICTest;
7
8 my $schema = DBICTest::init_schema();
9
10 plan tests => 5; 
11
12 my $rs = $cd = $schema->resultset("CD")->search({});
13
14 my $rs_title = $rs->get_column('title');
15 my $rs_year = $rs->get_column('year');
16
17 is($rs_title->next, 'Spoonful of bees', "next okay");
18
19 my @all = $rs_title->all;
20 cmp_ok(scalar @all, '==', 5, "five titles returned");
21
22 cmp_ok($rs_year->max, '==', 2001, "max okay for year");
23 is($rs_title->min, 'Caterwaulin\' Blues', "min okay for title");
24
25 cmp_ok($rs_year->sum, '==', 9996, "three artists returned");
26