summaryrefslogtreecommitdiff
path: root/main_test.go
diff options
context:
space:
mode:
authorDavid Schlachter <t480-debian-git@schlachter.ca>2025-11-11 00:24:55 -0500
committerDavid Schlachter <t480-debian-git@schlachter.ca>2025-11-11 00:26:06 -0500
commitb36d98e47cdb4939be2507cd8b72ae5df487bdf2 (patch)
treec6c0aac8372a77bdd26f919d0c3e875ef2b688e0 /main_test.go
parent8d47cd773142132e48fab2b04e4b71126d7bb7d5 (diff)
Change how tasks are added and removed
Diffstat (limited to 'main_test.go')
-rw-r--r--main_test.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/main_test.go b/main_test.go
deleted file mode 100644
index 3e79bf9..0000000
--- a/main_test.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package main
-
-import (
- "testing"
-)
-
-func TestMain(t *testing.T) {
- tasks, err := readInput("testdata/test_tasks.txt")
- if err != nil {
- t.Logf("Expected no error when reading input file, got '%s'", err)
- t.FailNow()
- }
-
- if len(tasks) != 3 {
- t.Logf("Expected 3 tasks to be parsed, got %d", len(tasks))
- t.FailNow()
- }
-}