diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-11-14 20:14:07 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-11-14 20:14:07 +0000 |
commit | 9835833c0d1fc3c59c0619cc4cda5359ddba3a4c (patch) | |
tree | 7781c72abf9fae2feaf237d8a05e29faa94fff7c /reader/reader_test.go | |
parent | f2fe102b3674d43144ec47e4df7246daef4626df (diff) |
fixed - passing test
Diffstat (limited to '')
-rw-r--r-- | reader/reader_test.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/reader/reader_test.go b/reader/reader_test.go index 3096c1b..eab6848 100644 --- a/reader/reader_test.go +++ b/reader/reader_test.go @@ -104,4 +104,10 @@ func TestExtract(t *testing.T) { if d["Introduction"]["C9"].Value != "Test Department" { t.Errorf("Expected C9 in Introduction sheet to be Test Department - instead it is %s", d["Introduction"]["C9"].Value) } + if d["Introduction"]["J9"].Value != "Greedy Parrots" { + t.Errorf("Expected J9 in Introduction sheet to be Greedy Parrots - instead it is %s", d["Introduction"]["J9"].Value) + } + if d["Introduction"]["A1"].Value != "10" { + t.Errorf("Expected A1 in Introduction sheet to be 10 - instead it is %s", d["Introduction"]["A1"].Value) + } } |