aboutsummaryrefslogtreecommitdiffstats
path: root/reader/reader_test.go
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-11-03 21:42:13 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2019-11-03 21:42:13 +0000
commitc137d4ca681d8f68654a5273e760fa21af08b21b (patch)
tree1ccf245adb3941ef3ad7c08c2cf63a53addf0ebd /reader/reader_test.go
parent29ba5464c10d681b39f8e65b07f533d8f43f1b45 (diff)
added alphaStream
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 fe58445..109b605 100644
--- a/reader/reader_test.go
+++ b/reader/reader_test.go
@@ -42,6 +42,12 @@ func TestReadXLSX(t *testing.T) {
_ = ReadXLSX("testdata/test_template.xlsx") // TODO: remove temp blank
}
+func TestAlphaStream(t *testing.T) {
+ if alphaStream[26] != "AA" {
+ t.Errorf("Expected AA, got %v", alphaStream[26])
+ }
+}
+
func TestAlphaSingle(t *testing.T) {
as := alphaSingle()
if as[0] != "A" {