MultiCreate test
Arthur Axel "fREW" Schmidt [Wed, 14 Apr 2010 18:10:57 +0000 (18:10 +0000)]
t/row/filter_column.t

index d036f4f..49b630d 100644 (file)
@@ -49,4 +49,13 @@ $artist->discard_changes;
 $artist->rank(40);
 ok( !$artist->is_column_changed('rank'), 'column is not dirty after setting the same value' );
 
+MC: {
+   my $cd = $schema->resultset('CD')->create({
+      artist => { rank => 20 },
+      title => 'fun time city!',
+      year => 'forevertime',
+   });
+   is $cd->artist->rank, 20, 'artist rank gets correctly unfiltered then filtered on MC';
+}
+
 done_testing;