mst pointed out that my $val = $obj->{col}; $obj->col(23); print $val; will reflect...
[dbsrgits/DBIx-Class-Historic.git] / t / cdbi-t / columns_as_hashes.t
1 #!/usr/bin/perl -w
2
3 use strict;
4 use Test::More;
5 use Test::Warn;
6
7 BEGIN {
8   eval "use DBIx::Class::CDBICompat;";
9   plan $@ ? (skip_all => "Class::Trigger and DBIx::ContextualFetch required: $@")
10           : (tests=> 8);
11 }
12
13 use lib 't/testlib';
14 use Film;
15
16 my $waves = Film->insert({
17     Title     => "Breaking the Waves",
18     Director  => 'Lars von Trier',
19     Rating    => 'R'
20 });
21
22 warnings_like {
23     my $rating = $waves->{rating};
24     $waves->Rating("PG");
25     is $rating, "R", 'evaluation of column value is not deferred';
26 } qr{^Column 'rating' of 'Film/$waves' was fetched as a hash at \Q$0};
27
28 warnings_like {
29     is $waves->{title}, $waves->Title, "columns can be accessed as hashes";
30 } qr{^Column 'title' of 'Film/$waves' was fetched as a hash at\b};
31
32 $waves->Rating("G");
33
34 warnings_like {
35     is $waves->{rating}, "G", "updating via the accessor updates the hash";
36 } qr{^Column 'rating' of 'Film/$waves' was fetched as a hash at\b};
37
38
39 warnings_like {
40     $waves->{rating} = "PG";
41 } qr{^Column 'rating' of 'Film/$waves' was stored as a hash at\b};
42
43 $waves->update;
44 my @films = Film->search( Rating => "PG", Title => "Breaking the Waves" );
45 is @films, 1, "column updated as hash was saved";