Skip to content

Commit

Permalink
chore(deps): bump nefilim to v0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
plastikfan committed Nov 4, 2024
1 parent 1bc0d6f commit ee572ad
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 145 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/onsi/ginkgo/v2 v2.21.0
github.com/onsi/gomega v1.35.1
github.com/snivilised/li18ngo v0.1.7
github.com/snivilised/nefilim v0.1.4
github.com/snivilised/nefilim v0.1.7
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
go.uber.org/mock v0.5.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ github.com/snivilised/li18ngo v0.1.7 h1:XRYpmP7jSAxzRyg5WH0PViFb9ycWGFcDkQQqd2Gs
github.com/snivilised/li18ngo v0.1.7/go.mod h1:NVOexqt/aIhnenNPQDqbJchLNte92io87j5o2l+HNqs=
github.com/snivilised/nefilim v0.1.4 h1:bhiENDl/T6ZQO146eF8UnxtXLQenSzEyjwuTeWScImw=
github.com/snivilised/nefilim v0.1.4/go.mod h1:+4/hKxgfvE8eNjLMJC+3ropEZSQuiR/NqfPtIuw7ZMw=
github.com/snivilised/nefilim v0.1.7 h1:T7ekCkLCrDVcTCeodgomX/sehNIRsGNN+aiv/u5Yn+E=
github.com/snivilised/nefilim v0.1.7/go.mod h1:+4/hKxgfvE8eNjLMJC+3ropEZSQuiR/NqfPtIuw7ZMw=
github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo=
github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0=
github.com/spf13/afero v1.11.0 h1:WJQKhtpdm3v2IzqG8VMqrr6Rf3UYpEF239Jy9wNepM8=
Expand Down
141 changes: 0 additions & 141 deletions src/generators/gola/mem-fs_test.go

This file was deleted.

5 changes: 3 additions & 2 deletions src/generators/gola/signature_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"github.com/snivilised/cobrass/src/generators/gola"
"github.com/snivilised/cobrass/src/internal/lab"
nef "github.com/snivilised/nefilim"
"github.com/snivilised/nefilim/test/luna"
)

type setupFile struct {
Expand Down Expand Up @@ -58,7 +59,7 @@ var _ = Describe("Signature", Ordered, func() {
Context("and: Test mode", func() {
Context("and: without write", func() {
It("🧪 should: return hash result of newly generated content", func() {
fS := NewTestMemFS()
fS := luna.NewMemFS()
templatesSubPath := ""
outputPath = filepath.Join(repo, testPath)

Expand Down Expand Up @@ -136,7 +137,7 @@ var _ = Describe("Signature", Ordered, func() {
doWrite = true
)

fS := NewTestMemFS()
fS := luna.NewMemFS()
templatesSubPath := ""
outputPath = filepath.Join(repo, testPath)

Expand Down
4 changes: 3 additions & 1 deletion src/generators/gola/source-code-generator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (

"github.com/snivilised/cobrass/src/generators/gola"
nef "github.com/snivilised/nefilim"
"github.com/snivilised/nefilim/test/luna"
)

var _ = Describe("SourceCodeGenerator", Ordered, func() {
Expand All @@ -19,7 +20,8 @@ var _ = Describe("SourceCodeGenerator", Ordered, func() {
BeforeAll(func() {
repo = Repo("../..")
testPath = filepath.Join("src", "generators", "gola", "out", "assistant")
fS = NewTestMemFS()
luna.NewMemFS()
fS = luna.NewMemFS()
})

Context("AnyMissing", func() {
Expand Down

0 comments on commit ee572ad

Please sign in to comment.