Rename app to Lemma

This commit is contained in:
2024-12-19 23:59:27 +01:00
parent 5598c0861d
commit b6b4c01f0e
70 changed files with 262 additions and 263 deletions

View File

@@ -9,7 +9,7 @@ import (
"path/filepath"
"testing"
"novamd/internal/handlers"
"lemma/internal/handlers"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@@ -17,7 +17,7 @@ import (
func TestStaticHandler_Integration(t *testing.T) {
// Create temporary directory for test static files
tempDir, err := os.MkdirTemp("", "novamd-static-test-*")
tempDir, err := os.MkdirTemp("", "lemmastatic-test-*")
require.NoError(t, err)
defer os.RemoveAll(tempDir)