projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
1d7e89b
)
Forgot to set up the relationship between Actor and Film. Turns it out
Michael G Schwern [Wed, 13 Feb 2008 08:14:34 +0000 (
00:14
-0800)]
was working because create() was holding onto the given values but once
we changed it to throw them out it (properly) broke.
t/cdbi-t/columns_as_hashes.t
patch
|
blob
|
blame
|
history
diff --git
a/t/cdbi-t/columns_as_hashes.t
b/t/cdbi-t/columns_as_hashes.t
index
3eca270
..
f85f50f
100644
(file)
--- a/
t/cdbi-t/columns_as_hashes.t
+++ b/
t/cdbi-t/columns_as_hashes.t
@@
-78,7
+78,8
@@
warning_is {
};
require Actor;
-
+ Actor->has_a( film => "Film" );
+
my $actor = Actor->insert({
name => 'Emily Watson',
film => $waves,