---
byo run-tests: test/tsv-lib-test.sh

	test-add-const-column
name	age
alice	10
bob	20
host_name	name	age
087b56372b3d	alice	10
087b56372b3d	bob	20
	OK
	test-concat-rows
name,age
alice,0
bob,10
carol,20
FATAL: Invalid header in '_tmp/bad.csv': 'name,age,another'.  Expected 'name,age'
name,age
alice,0
bob,10
carol,20
	OK
	test-tsv2html
<table id="test2">
  <thead>
    <tr>
    <td>name</td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td> carol </td>
    </tr>
  </tbody>
  <colgroup>
    <col id="name" type="case-insensitive" />
  </colgroup>
</table>
	OK

devtools/byo.sh: 3 tests passed.