Changeset 6811 for platform/tdiary/spec

Show
Ignore:
Timestamp:
02/17/08 15:43:02 (10 months ago)
Author:
hsbt
Message:

platform/tdiary/spec/spec_helper.rb: fix body_enter_proc.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • platform/tdiary/spec/spec_helper.rb

    r6810 r6811  
    1818                @header_procs = [] 
    1919                @update_procs = [] 
     20                @body_enter_procs = [] 
    2021                @body_leave_procs = [] 
    2122        end 
     
    4243         
    4344        def add_body_enter_proc( block = Proc::new ) 
    44                 @body_leave_procs << block 
     45                @body_enter_procs << block 
    4546        end 
    4647