aboutsummaryrefslogtreecommitdiffstats
path: root/reader/reader_test.go
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-11-28 11:10:00 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2019-11-28 11:10:00 +0000
commit05f6a2c270b227d3d41294b4f43e16dc89c51c85 (patch)
tree0f8be5e78911c7008f5a99bd140731076b4693a3 /reader/reader_test.go
parentf2fe102b3674d43144ec47e4df7246daef4626df (diff)
added another test
Diffstat (limited to '')
-rw-r--r--reader/reader_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/reader/reader_test.go b/reader/reader_test.go
index 3096c1b..77c2133 100644
--- a/reader/reader_test.go
+++ b/reader/reader_test.go
@@ -104,4 +104,7 @@ 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["Another Sheet"]["E26"].Value != "Integer:" {
+ t.Errorf("Expected E26 in Another Sheet sheet to be Integer: - instead it is %s", d["Another Sheet"]["E26"].Value)
+ }
}