Show
Ignore:
Timestamp:
10/22/07 17:22:20 (6 years ago)
Author:
ged
Message:

converted most tests to the attribute syntax + reorganized tests around

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/tests/a.py

    r147 r234  
    22 
    33class A(Entity): 
    4     has_field('name', String(30)) 
    5     belongs_to('b', of_kind='tests.b.B') 
     4    name = Field(String(30)) 
     5    b = ManyToOne('tests.b.B') 
    66