diff --git a/.gitignore b/.gitignore index de00f02..dd824d6 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ public webapp bin static/style.css +db.sqlite3* diff --git a/Makefile b/Makefile index 3294018..8e36cc3 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ site: go tool ssgod test: build + mkdir -p bin/tests go test ./tests/... -c -o bin/tests ./bin/tests/admin.test ./bin/tests/auth.test diff --git a/TODO.txt b/TODO.txt index cc8f8c4..5ba6766 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,3 +1,4 @@ * The qmgr needs to actually manage the queue, currently it's just a little testing tool. * Probably also need an email testing tool that can send sample emails off the cli. * Try to remove code.js and either bring the functionality to jzed.js or not use it. +* Admin tests need to make a user for admin first.