- Timestamp:
- May 29, 2015, 6:29:52 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/uq/lang/python/Rappture/test/pyxml_test.py
r5529 r5625 90 90 curve = rx['output.curve(temp).component'] 91 91 curve['xy'] = [[1, 2, 3], [4, 5, 6]] 92 assert curve['xy'].value == "1 4 2 53 6"92 assert curve['xy'].value == "1 4\n2 5\n3 6" 93 93 94 94 … … 97 97 curve = rx['output.curve(temp).component'] 98 98 curve['xy'] = ([1, 2, 3], [4, 5, 6]) 99 assert curve['xy'].value == "1 4 2 53 6"99 assert curve['xy'].value == "1 4\n2 5\n3 6" 100 100 101 101 … … 104 104 curve = rx['output.curve(temp).component'] 105 105 curve['xy'] = ((1, 2, 3), (4, 5, 6)) 106 assert curve['xy'].value == "1 4 2 53 6"106 assert curve['xy'].value == "1 4\n2 5\n3 6" 107 107 108 108
Note: See TracChangeset
for help on using the changeset viewer.