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

@@ -2,11 +2,11 @@ package storage_test
import (
"io/fs"
"novamd/internal/storage"
"lemma/internal/storage"
"path/filepath"
"testing"
_ "novamd/internal/testenv"
_ "lemma/internal/testenv"
)
// TestFileNode ensures FileNode structs are created correctly

View File

@@ -2,7 +2,7 @@ package storage
import (
"io/fs"
"novamd/internal/logging"
"lemma/internal/logging"
"os"
)

View File

@@ -6,7 +6,7 @@ import (
"path/filepath"
"time"
_ "novamd/internal/testenv"
_ "lemma/internal/testenv"
)
type mockDirEntry struct {

View File

@@ -2,7 +2,7 @@ package storage
import (
"fmt"
"novamd/internal/git"
"lemma/internal/git"
)
// RepositoryManager defines the interface for managing Git repositories.

View File

@@ -4,9 +4,9 @@ import (
"errors"
"testing"
"novamd/internal/git"
"novamd/internal/storage"
_ "novamd/internal/testenv"
"lemma/internal/git"
"lemma/internal/storage"
_ "lemma/internal/testenv"
)
// MockGitClient implements git.Client interface for testing

View File

@@ -1,7 +1,7 @@
package storage
import (
"novamd/internal/git"
"lemma/internal/git"
)
// Manager interface combines all storage interfaces.

View File

@@ -6,8 +6,8 @@ import (
"strings"
"testing"
"novamd/internal/storage"
_ "novamd/internal/testenv"
"lemma/internal/storage"
_ "lemma/internal/testenv"
)
func TestValidatePath(t *testing.T) {