8 my $schema = DBICTest->init_schema();
12 eval 'use Encode; 1' or plan skip_all => 'Need Encode run this test';
16 eval 'use utf8; 1' or plan skip_all => 'Need utf8 run this test';
21 DBICTest::Schema::CD->load_components('UTF8Columns');
22 DBICTest::Schema::CD->utf8_columns('title');
23 Class::C3->reinitialize();
25 my $cd = $schema->resultset('CD')->create( { artist => 1, title => 'øni', year => 'foo' } );
26 my $utf8_char = 'uniuni';
30 ok( Encode::is_utf8( $cd->title ), 'got title with utf8 flag' );
31 ok( !Encode::is_utf8( $cd->year ), 'got year without utf8 flag' );
33 Encode::_utf8_on($utf8_char);
34 $cd->title($utf8_char);
35 ok( !Encode::is_utf8( $cd->{_column_data}{title} ), 'store utf8-less chars' );
39 ok( utf8::is_utf8( $cd->title ), 'got title with utf8 flag' );
40 ok( !utf8::is_utf8( $cd->year ), 'got year without utf8 flag' );
42 utf8::decode($utf8_char);
43 $cd->title($utf8_char);
44 ok( !utf8::is_utf8( $cd->{_column_data}{title} ), 'store utf8-less chars' );