source: ruby/branches/0.5/spec/lib/open_ehr/rm/data_structures/item_structure/item_list_spec.rb@ 339

Last change on this file since 339 was 339, checked in by KOBAYASHI, Shinji, 14 years ago

data_structure will nearly completed

File size: 1.5 KB
Line 
1require File.dirname(__FILE__) + '/../../../../../spec_helper'
2include OpenEHR::RM::DataStructures::ItemStructure
3include OpenEHR::RM::DataStructures::ItemStructure::Representation
4include OpenEHR::RM::DataTypes::Text
5
6describe ItemList do
7 before(:each) do
8 items = %w{one two three}.collect do |n|
9 Element.new(:name => DvText.new(:value => n),
10 :archetype_node_id => 'test')
11 end
12 item_list_name = DvText.new(:value => 'item list')
13 @item_list = ItemList.new(:name => item_list_name,
14 :archetype_node_id => 'test',
15 :items => items)
16
17 end
18
19 it 'should be instance of ItemList' do
20 @item_list.should be_an_instance_of ItemList
21 end
22
23 it 'count should be 3' do
24 @item_list.item_count.should be_equal 3
25 end
26
27 it 'count should be 0' do
28 @item_list.items = nil
29 @item_list.item_count.should be_equal 0
30 end
31
32
33 it 'retrieve the names of all items' do
34 @item_list.names.should == %w{one two three}.collect{|n|
35 DvText.new(:value => n)}
36 end
37
38 it 'should return the item with a name' do
39 @item_list.named_item('one').name.value.should == 'one'
40 end
41
42 it 'should return nil when item is not exist' do
43 @item_list.named_item('four').should be_nil
44 end
45
46 it 'retrieve the ith item with number' do
47 @item_list.ith_item(1).name.value.should == 'one'
48 end
49
50 it 'generate cluster of items' do
51 @item_list.as_hierarchy.name.value.should == 'item list'
52 end
53end
Note: See TracBrowser for help on using the repository browser.