Sha256: 73eabc0717fa6a08773c1e6875a990320740ef86a9e206acfcb8606d310134b0

Contents?: true

Size: 458 Bytes

Versions: 3

Compression:

Stored size: 458 Bytes

Contents

class Repeat3 < Iowa::Component

	def awake
		@tl3a = [1,2,3,4,5].collect {|x| x.to_s}
		@tl3b = [6,7,8,9,10].collect {|x| x.to_s}
	end

	def twa
		@tl3a.inspect
	end

	def twb
		@tl3b.inspect
	end

	def test_item
		@test_item
	end

	def test_item=(val)
		@test_item = val
	end

	def test_list3a
		@tl3a
	end

	def test_list3b
		@tl3b
	end

end

<?
	test3 {
		item = test_item
		list = test_list3a
	}

	test3b {
		item = test_item
		list = test_list3b
	}
?>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
IOWA-1.0.3 test/TC_IOWAFunctions/iowa/Repeat3.iwa
IOWA-1.0.2 test/TC_IOWAFunctions/iowa/Repeat3.iwa
IOWA-1.0.0 test/TC_IOWAFunctions/iowa/Repeat3.iwa