Fix RSC->reset() to no longer return $self, which fixes Cursor::Cached + RSC.
[dbsrgits/DBIx-Class.git] / t / 60core.t
index 24b001f..6094c39 100644 (file)
@@ -108,6 +108,10 @@ is($new_again->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id gener
 {
   ok(my $artist = $schema->resultset('Artist')->create({name => 'store_column test'}));
   is($artist->name, 'X store_column test'); # used to be 'X X store...'
+  
+  # call store_column even though the column doesn't seem to be dirty
+  ok($artist->update({name => 'X store_column test'}));
+  is($artist->name, 'X X store_column test');
   $artist->delete;
 }