aboutsummaryrefslogtreecommitdiffstats
path: root/reader/reader_test.go
diff options
context:
space:
mode:
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)
+ }
}