Searched refs:Film (Results 1 - 13 of 13) sorted by relevance

/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/cdbi/testlib/
H A DActor.pm12 __PACKAGE__->columns(All => qw/ Name Film Salary /);
H A DFilm.pm2 Film; package
35 use base 'Film';
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/t/testlib/
H A DActor.pm13 __PACKAGE__->columns(All => qw/ Name Film Salary /);
H A DFilm.pm1 package Film; package
37 use base 'Film';
/macosx-10.9.5/CPANInternal-140/Class-DBI/t/testlib/
H A DActor.pm11 __PACKAGE__->columns(All => qw/ Name Film Salary /);
H A DFilm.pm1 package Film; package
49 use base 'Film';
/macosx-10.9.5/CPANInternal-140/PathTools/t/lib/Test/
H A DSimple.pm121 Here's an example of a simple .t file for the fictional Film module.
125 use Film; # What you're testing.
127 my $btaste = Film->new({ Title => 'Bad Taste',
132 ok( defined($btaste) and ref $btaste eq 'Film', 'new() works' );
150 Indicating the Film::Rating() method is broken.
H A DMore.pm260 ok( Film->can('db_Main'), 'set_db()' );
/macosx-10.9.5/CPANInternal-140/Test-Simple/lib/Test/
H A DSimple.pm113 Here's an example of a simple .t file for the fictional Film module.
117 use Film; # What you're testing.
119 my $btaste = Film->new({ Title => 'Bad Taste',
124 ok( defined($btaste) && ref $btaste eq 'Film, 'new() works' );
143 Indicating the Film::Rating() method is broken.
H A DMore.pm270 ok( Film->can('db_Main'), 'set_db()' );
/macosx-10.9.5/CPANInternal-140/Class-DBI/lib/Class/
H A DDBI.pm1848 Film->constrain_column(year => qr/\d{4}/);
1849 Film->constrain_column(rating => [qw/U Uc PG 12 15 18/]);
2462 Role->has_a(film => 'Film');
2467 Then, we need to set up our Film and Actor class to use this linking table:
2469 Film->table('film');
2470 Film->columns(All => qw/id title rating/);
2471 Film->has_many(stars => [ Role => 'actor' ]);
2480 in Role to inflate to the actual Actor and Film objects, this gives us a
2481 cheap many-to-many relationship. In the case of Film, this is equivalent
2484 Film
[all...]
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/lib/Class/
H A DDBI.pm1856 Film->constrain_column(year => qr/^\d{4}$/);
1857 Film->constrain_column(rating => [qw/U Uc PG 12 15 18/]);
1858 Film->constrain_column(title => sub { length() <= 20 });
2519 Role->has_a(film => 'Film');
2522 Then, set up the Film and Actor classes to use this linking table:
2524 Film->table('film');
2525 Film->columns(All => qw/id title rating/);
2526 Film->has_many(stars => [ Role => 'actor' ]);
2535 Actor and Film objects, providing a cheap many-to-many relationship.
2537 In the case of Film, thi
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/perl/BerkeleyDB/t/Test/
H A DMore.pm277 ok( Film->can('db_Main'), 'set_db()' );

Completed in 187 milliseconds