diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-11-11 20:55:58 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-11-11 20:55:58 +0000 |
commit | 6e4a1c902f58e0a057fd23ab2276115f6d3a8f46 (patch) | |
tree | 39c4dc2e8ebf932c601893e3a476329d4e420553 /reader/reader_test.go | |
parent | 5a9b2ea3b312134dd7f8435d98b2f85341ba121e (diff) |
struggling on with this func to manage the parsed data data structure
Diffstat (limited to 'reader/reader_test.go')
-rw-r--r-- | reader/reader_test.go | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/reader/reader_test.go b/reader/reader_test.go index b3d40c1..63d9a3e 100644 --- a/reader/reader_test.go +++ b/reader/reader_test.go @@ -101,11 +101,7 @@ func TestGetSheetsFromDM(t *testing.T) { } } -func TestSheetDataInMap(t *testing.T) { - // want to see data from a file in this form: - // Struct: - // filename: test_template.xlsx - // data: map[sheetName]sheetData - // we want to test ^^^^^^^^^^^^^ - +func TestReadXLSXToMap(t *testing.T) { + d := ReadXLSToMap("testdata/datamap.csv", "testdata/test_template.xlsx") + _ = d } |