Test generating structure with tab delimiter.
()
| 93 | |
| 94 | |
| 95 | def test_generate_with_tab_delimiter(): |
| 96 | """Test generating structure with tab delimiter.""" |
| 97 | schema = [{ |
| 98 | "id": "user id", |
| 99 | "name": "user name" |
| 100 | }] |
| 101 | |
| 102 | result = generate_structure(schema, {"delimiter": "\t"}) |
| 103 | |
| 104 | # Should show tab indicator in header |
| 105 | assert "[N\t]{id,name}:" in result |
| 106 | # Should use tab as delimiter in sample row |
| 107 | assert "<user id>\t<user name>" in result |
| 108 | |
| 109 | |
| 110 | def test_generate_with_pipe_delimiter(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…