chore: rename module to uppercase

This commit is contained in:
technofab 2025-12-14 15:23:19 +01:00
parent 5a7053afcb
commit 318b903d12
No known key found for this signature in database
14 changed files with 28 additions and 28 deletions

View file

@ -3,14 +3,14 @@ package main
import (
"os"
"gitlab.com/technofab/nixtest/internal/config"
appnix "gitlab.com/technofab/nixtest/internal/nix"
"gitlab.com/technofab/nixtest/internal/report/console"
"gitlab.com/technofab/nixtest/internal/report/junit"
"gitlab.com/technofab/nixtest/internal/runner"
appsnap "gitlab.com/technofab/nixtest/internal/snapshot"
"gitlab.com/technofab/nixtest/internal/types"
"gitlab.com/technofab/nixtest/internal/util"
"gitlab.com/TECHNOFAB/nixtest/internal/config"
appnix "gitlab.com/TECHNOFAB/nixtest/internal/nix"
"gitlab.com/TECHNOFAB/nixtest/internal/report/console"
"gitlab.com/TECHNOFAB/nixtest/internal/report/junit"
"gitlab.com/TECHNOFAB/nixtest/internal/runner"
appsnap "gitlab.com/TECHNOFAB/nixtest/internal/snapshot"
"gitlab.com/TECHNOFAB/nixtest/internal/types"
"gitlab.com/TECHNOFAB/nixtest/internal/util"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"

2
go.mod
View file

@ -1,4 +1,4 @@
module gitlab.com/technofab/nixtest
module gitlab.com/TECHNOFAB/nixtest
go 1.23.0

View file

@ -8,7 +8,7 @@ import (
"os/exec"
"strings"
apperrors "gitlab.com/technofab/nixtest/internal/errors"
apperrors "gitlab.com/TECHNOFAB/nixtest/internal/errors"
)
// Service defines operations related to Nix

View file

@ -10,7 +10,7 @@ import (
"strings"
"testing"
apperrors "gitlab.com/technofab/nixtest/internal/errors"
apperrors "gitlab.com/TECHNOFAB/nixtest/internal/errors"
)
func TestHelperProcess(t *testing.T) {

View file

@ -11,8 +11,8 @@ import (
"github.com/jedib0t/go-pretty/v6/text"
"github.com/rs/zerolog/log"
"github.com/sergi/go-diff/diffmatchpatch"
"gitlab.com/technofab/nixtest/internal/types"
"gitlab.com/technofab/nixtest/internal/util"
"gitlab.com/TECHNOFAB/nixtest/internal/types"
"gitlab.com/TECHNOFAB/nixtest/internal/util"
)
// PrintErrors prints error messages for failed tests

View file

@ -12,7 +12,7 @@ import (
"time"
"github.com/jedib0t/go-pretty/v6/text"
"gitlab.com/technofab/nixtest/internal/types"
"gitlab.com/TECHNOFAB/nixtest/internal/types"
)
// captureOutput captures stdout and stderr during the execution of a function

View file

@ -7,8 +7,8 @@ import (
"strings"
"time"
"gitlab.com/technofab/nixtest/internal/types"
"gitlab.com/technofab/nixtest/internal/util"
"gitlab.com/TECHNOFAB/nixtest/internal/types"
"gitlab.com/TECHNOFAB/nixtest/internal/util"
)
type JUnitReport struct {

View file

@ -9,7 +9,7 @@ import (
"testing"
"time"
"gitlab.com/technofab/nixtest/internal/types"
"gitlab.com/TECHNOFAB/nixtest/internal/types"
)
func formatDurationSeconds(d time.Duration) string {

View file

@ -9,10 +9,10 @@ import (
"time"
"github.com/rs/zerolog/log"
"gitlab.com/technofab/nixtest/internal/nix"
"gitlab.com/technofab/nixtest/internal/snapshot"
"gitlab.com/technofab/nixtest/internal/types"
"gitlab.com/technofab/nixtest/internal/util"
"gitlab.com/TECHNOFAB/nixtest/internal/nix"
"gitlab.com/TECHNOFAB/nixtest/internal/snapshot"
"gitlab.com/TECHNOFAB/nixtest/internal/types"
"gitlab.com/TECHNOFAB/nixtest/internal/util"
)
// Runner executes tests based on provided specifications and configuration

View file

@ -9,8 +9,8 @@ import (
"testing"
"time"
apperrors "gitlab.com/technofab/nixtest/internal/errors"
"gitlab.com/technofab/nixtest/internal/types"
apperrors "gitlab.com/TECHNOFAB/nixtest/internal/errors"
"gitlab.com/TECHNOFAB/nixtest/internal/types"
)
// --- Mock Service Implementations ---

View file

@ -7,8 +7,8 @@ import (
"path/filepath"
"strings"
apperrors "gitlab.com/technofab/nixtest/internal/errors"
"gitlab.com/technofab/nixtest/internal/util"
apperrors "gitlab.com/TECHNOFAB/nixtest/internal/errors"
"gitlab.com/TECHNOFAB/nixtest/internal/util"
)
// Service defines operations related to test snapshots

View file

@ -9,7 +9,7 @@ import (
"strings"
"testing"
apperrors "gitlab.com/technofab/nixtest/internal/errors"
apperrors "gitlab.com/TECHNOFAB/nixtest/internal/errors"
)
func TestDefaultService_GetPath(t *testing.T) {

View file

@ -8,7 +8,7 @@ import (
"github.com/akedrou/textdiff"
"github.com/akedrou/textdiff/myers"
apperrors "gitlab.com/technofab/nixtest/internal/errors"
apperrors "gitlab.com/TECHNOFAB/nixtest/internal/errors"
)
func ComputeDiff(expected, actual string) (string, error) {

View file

@ -8,7 +8,7 @@ import (
"strings"
"testing"
apperrors "gitlab.com/technofab/nixtest/internal/errors"
apperrors "gitlab.com/TECHNOFAB/nixtest/internal/errors"
)
func TestComputeDiff(t *testing.T) {