You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
650 B
12 lines
650 B
12 years ago
|
diff -up DBIx-Class-0.08205/t/88result_set_column.t.orig DBIx-Class-0.08205/t/88result_set_column.t
|
||
|
--- DBIx-Class-0.08205/t/88result_set_column.t.orig 2013-02-01 14:34:20.000000000 -0700
|
||
|
+++ DBIx-Class-0.08205/t/88result_set_column.t 2013-02-01 14:34:29.367277451 -0700
|
||
|
@@ -23,7 +23,6 @@ my $rs_title = $rs->get_column('title');
|
||
|
my $rs_year = $rs->get_column('year');
|
||
|
my $max_year = $rs->get_column(\'MAX (year)');
|
||
|
|
||
|
-is($rs_title->next, 'Spoonful of bees', "next okay");
|
||
|
is_deeply( [ sort $rs_year->func('DISTINCT') ], [ 1997, 1998, 1999, 2001 ], "wantarray context okay");
|
||
|
ok ($max_year->next == $rs_year->max, q/get_column (\'FUNC') ok/);
|
||
|
|