aboutsummaryrefslogtreecommitdiffstats
path: root/reader/reader_test.go
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-11-14 20:14:07 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2019-11-14 20:14:07 +0000
commit9835833c0d1fc3c59c0619cc4cda5359ddba3a4c (patch)
tree7781c72abf9fae2feaf237d8a05e29faa94fff7c /reader/reader_test.go
parentf2fe102b3674d43144ec47e4df7246daef4626df (diff)
fixed - passing test
Diffstat (limited to '')
-rw-r--r--reader/reader_test.go6
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)
+ }
}