Changeset 211 for ruby/branches/0.5/spec


Ignore:
Timestamp:
Aug 17, 2009, 10:18:49 PM (15 years ago)
Author:
KOBAYASHI, Shinji
Message:

refs #54
commit log can be follow by http://twitter.com/skoba

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ruby/branches/0.5/spec/lib/open_ehr/rm/data_structures/item_structure/item_table_spec.rb

    r210 r211  
    114114      @item_table.row_with_key(Set['two','five'])}.should raise_error(ArgumentError)
    115115  end
     116
     117  it 'should be element at cell ij' do
     118    @item_table.element_at_cell_ij(2,2).name.value.should == 'five'
     119  end
     120
     121  it 'should not be element at cell with wrong ij' do
     122    @item_table.element_at_cell_ij(2,3).name.value.should_not == 'five'
     123  end
    116124end
Note: See TracChangeset for help on using the changeset viewer.