features/transform.feature in cuke4php-0.9.6.b vs features/transform.feature in cuke4php-0.9.6.c
- old
+ new
@@ -26,5 +26,17 @@
Then "table" should equal:
| reverse |
| three |
| two |
| one |
+
+Scenario: transform a table with two columns
+ Given "table" is:
+ | KEY | VALUE |
+ | one | a |
+ | two | b |
+ | three | c |
+ Then "table" should equal:
+ | KEY | VALUE |
+ | ONE | A |
+ | TWO | B |
+ | THREE | C |