Revision: 3329
Author: janne.t.harkonen
Date: Wed May 19 04:13:39 2010
Log: test for list var
http://code.google.com/p/robotframework/source/detail?r=3329

Modified:
 /trunk/utest/parsing/test_populator.py

=======================================
--- /trunk/utest/parsing/test_populator.py      Wed May 19 04:06:46 2010
+++ /trunk/utest/parsing/test_populator.py      Wed May 19 04:13:39 2010
@@ -326,8 +326,11 @@

     def test_variable_table(self):
self._create_table('variables', [['${varname}', 'varvalue', '#has comment'],
-                                         ])
+                                         ['#label', 'A', 'B', 'C'],
+                                         ['@{items}', '1', '2', '3'],
+                                         ['#EOT']])
         self._assert_variable(0, '${varname}', ['varvalue'], 'has comment')
+ self._assert_variable(1, '@{items}', ['1', '2', '3'], 'label | A | B | C\nEOT')

 if __name__ == '__main__':
     unittest.main()

Reply via email to