Changeset 2303
- Timestamp:
- 03/06/10 05:28:49 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
cobra/trunk/Tests/500-dynamic/104-dynamic-ops.cobra
r2242 r2303 17 17 .testAugmentedAssignment 18 18 .testBoolOps 19 .testConcat 19 20 .testIn 20 21 … … 196 197 assert not any t 197 198 199 def testConcat 200 a = 'a' to dynamic 201 b = 'b' to dynamic 202 assert a + b == 'ab' 203 assert a == 'a' and b == 'b' 204 a += 'c' 205 assert a == 'ac' 206 a, b = 1, 2 207 assert a + b == 3 208 198 209 def testIn 199 210 .testIn1



