Publish current app and server

This commit is contained in:
ponzischeme89
2026-08-02 22:10:19 +12:00
parent a265636139
commit 1ed180c739
203 changed files with 23933 additions and 2788 deletions
+9
View File
@@ -56,3 +56,12 @@ func TestParseLevel(t *testing.T) {
}
}
}
func TestParseCapacity(t *testing.T) {
if got := ParseCapacity("1000", 5); got != 1000 {
t.Fatalf("capacity = %d", got)
}
if got := ParseCapacity("-1", 5); got != 5 {
t.Fatalf("negative capacity = %d", got)
}
}