projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
72537d3
)
test update
Rafael Kitover [Mon, 8 Feb 2010 13:33:09 +0000 (13:33 +0000)]
t/750firebird.t
patch
|
blob
|
blame
|
history
diff --git
a/t/750firebird.t
b/t/750firebird.t
index
d7f80cf
..
8eb4557
100644
(file)
--- a/
t/750firebird.t
+++ b/
t/750firebird.t
@@
-89,6
+89,12
@@
EOF
$new->discard_changes;
is($new->artistid, 66, 'Explicit PK assigned');
+ lives_ok {
+ $new->update({ name => 'baz' })
+ } 'update survived';
+ $new->discard_changes;
+ is $new->name, 'baz', 'row updated';
+
# test populate
lives_ok (sub {
my @pop;