source: ruby/branches/0.5/spec/lib/open_ehr/rm/data_structures/item_structure/item_table_spec.rb@ 205

Last change on this file since 205 was 205, checked in by KOBAYASHI, Shinji, 15 years ago

refs #54

File size: 1.1 KB
Line 
1require File.dirname(__FILE__) + '/../../../../../spec_helper'
2
3include OpenEhr::RM::DataStructures::ItemStructure
4include OpenEhr::RM::DataStructures::ItemStructure::Representation
5include OpenEhr::RM::DataTypes::Text
6
7def row(args)
8 return args.collect do |n|
9 Element.new(:name => DvText.new(n),
10 :archetype_node_id => 'test')
11 end
12end
13
14def cluster_builder(name,rows)
15 return Cluster.new(:name => DvText.new(name),
16 :archetype_node_id => 'test',
17 :items => rows)
18end
19
20describe ItemTable do
21 before(:each) do
22 row1 = row(%w{one two three})
23 row2 = row(%w{four five six})
24 rows = [row1, row2].collect{|r| cluster_builder('cluster',r)}
25 @item_table = ItemTable.new(:name => DvText.new('item table'),
26 :archetype_node_id => 'test',
27 :rows => [1,2])
28 end
29
30 it 'should be an instance of ItemTable' do
31 @item_table.should be_an_instance_of ItemTable
32 end
33
34 it 'row count should be 2' do
35 @item_table.row_count.should be_equal 2
36 end
37end
Note: See TracBrowser for help on using the repository browser.