features/transforms/data_frame_sieve.feature in remi-0.2.32 vs features/transforms/data_frame_sieve.feature in remi-0.2.33
- old
+ new
@@ -16,23 +16,25 @@
Given the following example for 'Sieve':
| level | program | contact | group |
| Undergrad | NURS | \\nil | intensive |
| Undergrad | \\nil | true | intensive |
| Undergrad | \\nil | false | base |
- | Grad | ENG | true | intensive |
+ | Grad | /ENG/ | true | intensive | # regex
| \\nil | \\nil | \\nil | base |
And the following example for 'Source Data':
| id | level | program | contact |
| 1 | Undergrad | CHEM | false |
| 2 | Undergrad | CHEM | true |
| 3 | Grad | CHEM | true |
| 4 | Undergrad | NURS | false |
| 5 | Unknown | CHEM | true |
+ | 6 | Grad | ENGL | true |
Then the target should match the example:
| id | level | program | contact | group |
| 1 | Undergrad | CHEM | false | base |
| 2 | Undergrad | CHEM | true | intensive |
| 3 | Grad | CHEM | true | base |
| 4 | Undergrad | NURS | false | intensive |
| 5 | Unknown | CHEM | true | base |
+ | 6 | Grad | ENGL | true | intensive |
\ No newline at end of file