Changeset 30879

Show
Ignore:
Timestamp:
03/06/09 11:04:26 (4 years ago)
Author:
okamura
Message:

add method test

Location:
lang/perl/SimpleCRUD/trunk
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/SimpleCRUD/trunk/lib/SimpleCRUD.pm

    r30856 r30879  
    3030    my $crud = SimpleCRUD->new($config); 
    3131    my $xhtml = $crud->listing('Books'); 
    32      
     32    
    3333=head1 METHODS 
    3434 
    3535=head2 new 
     36 
    3637=head2 listing 
     38 
    3739=head2 detail 
     40 
    3841=head2 upsert 
     42 
    3943=head2 do_upsert 
     44 
    4045=head2 delete 
     46 
    4147=head2 tables 
     48 
    4249=head2 registrations 
    43  
    44 =head1 PRIVATE METHODS 
    45  
    46 =head2 _schema 
    47 =head2 _base_url 
    48 =head2 _column 
    49 =head2 _column_of 
    50 =head2 _primaries 
    51 =head2 _orderd_columns 
    52 =head2 _relationship 
    53 =head2 _relationship_of 
    54 =head2 _b2_accessor 
    55 =head2 _b2_resultset 
    56 =head2 _m2m_accessors 
    57 =head2 _m2m_metadata 
    58 =head2 _m2m_resultset 
    59 =head2 _ordered_columns 
    60 =head2 _pager 
    61 =head2 _record 
    62 =head2 _records 
    63 =head2 _rel_class_of 
    64 =head2 _rel_cond_of 
    65 =head2 _rel_names 
    66 =head2 _rel_type_of 
    67 =head2 _result_source_name 
    6850 
    6951=cut 
     
    270252 
    271253sub registrations   { [ keys %{ $_[0]->_schema->source_registrations }] } 
     254 
     255 
     256=head1 PRIVATE METHODS 
     257 
     258=head2 _schema 
     259 
     260=head2 _base_url 
     261 
     262=head2 _column 
     263 
     264=head2 _column_of 
     265 
     266=head2 _primaries 
     267 
     268=head2 _ordered_columns 
     269 
     270=head2 _relationship 
     271 
     272=head2 _relationship_of 
     273 
     274=head2 _b2_accessor 
     275 
     276=head2 _b2_resultset 
     277 
     278=head2 _m2m_accessors 
     279 
     280=head2 _m2m_metadata 
     281 
     282=head2 _m2m_resultset 
     283 
     284=head2 _ordered_columns 
     285 
     286=head2 _pager 
     287 
     288=head2 _record 
     289 
     290=head2 _records 
     291 
     292=head2 _rel_class_of 
     293 
     294=head2 _rel_cond_of 
     295 
     296=head2 _rel_names 
     297 
     298=head2 _rel_type_of 
     299 
     300=head2 _result_source_name 
     301 
     302=cut 
    272303 
    273304sub _render {