Rename the project to fejkdata and record the fork source
Tests / vet + fmt + tests (pull_request) Failing after 6s

This commit is contained in:
2026-09-01 20:24:03 +02:00
parent 64a0d29496
commit 05dc042e49
23 changed files with 136 additions and 134 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
package fakes
package fejkdata
import (
"encoding/json"
@@ -8,7 +8,7 @@ import (
)
// engine builds a seeded faker with no loaded categories, for rendering tests.
func engine(seed uint64) *Fakes { return &Fakes{rand: newRand(seed, true)} }
func engine(seed uint64) *Fejkdata { return &Fejkdata{rand: newRand(seed, true)} }
// parse unmarshals a JSON template fragment into its dynamic form.
func parse(t *testing.T, s string) any {
@@ -30,7 +30,7 @@ func compiled(t *testing.T, s string) node {
return n
}
func mustRender(t *testing.T, f *Fakes, s string) string {
func mustRender(t *testing.T, f *Fejkdata, s string) string {
t.Helper()
return render(f.rand, compiled(t, s))
}