aboutsummaryrefslogtreecommitdiff
path: root/chksum/chksum_test.go
blob: 03646867d5333c0cdfd195ff17177904d344db54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package chksum

import "testing"

func TestParseFile(t *testing.T) {
	testCases := []struct {
		file string
	}{
		{"testdata/SUM"},
	}
	for _, tc := range testCases {
		t.Run(tc.file, func(t *testing.T) {
			ParseFile(tc.file)
		})
	}
}