~ubuntu-branches/ubuntu/utopic/libhtml-formhandler-model-dbic-perl/utopic-proposed

« back to all changes in this revision

Viewing changes to t/lib/BookDB/Schema/Result/Author.pm

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont, Salvatore Bonaccorso, Dominique Dumont
  • Date: 2013-10-13 18:35:48 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20131013183548-t4f9rp4ezb123ahk
Tags: 0.28-1
[ Salvatore Bonaccorso ]
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
* Change search.cpan.org based URIs to metacpan.org based URIs

[ Dominique Dumont ]
* Imported Upstream version 0.28
* bumped compat to 9
* control:
  * added version dep on libdbix-class-perl
  * bump std-version to 3.9.4
  + build-dep in libtest-exception-perl
* copyright: updated years

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
   'books' => 'author_books', 'book'
41
41
);
42
42
 
43
 
sub name {
 
43
sub full_name {
44
44
    my $self = shift;
45
45
    return $self->first_name . " " . $self->last_name;
46
46
}