| Conditions | 3 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | from msquaredc.project import Project |
||
| 35 | @test_cleanup |
||
| 36 | def test_integration(self,file): |
||
| 37 | p = Project(data="data sample for jerome.txt", questions="config.yml", coder="MGM", file=file) |
||
| 38 | value = 0 |
||
| 39 | for index,i in enumerate(p): |
||
| 40 | for j in i.coding_questions: |
||
| 41 | i[j] = value |
||
| 42 | value += 1 |
||
| 43 | p.export() |
||
| 44 |