Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/transform/remarshal_test.go')
-rw-r--r--tpl/transform/remarshal_test.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/tpl/transform/remarshal_test.go b/tpl/transform/remarshal_test.go
index 8e94ef6bf..22548593b 100644
--- a/tpl/transform/remarshal_test.go
+++ b/tpl/transform/remarshal_test.go
@@ -11,13 +11,14 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-package transform
+package transform_test
import (
"testing"
- "github.com/gohugoio/hugo/config"
"github.com/gohugoio/hugo/htesting"
+ "github.com/gohugoio/hugo/hugolib"
+ "github.com/gohugoio/hugo/tpl/transform"
qt "github.com/frankban/quicktest"
)
@@ -25,13 +26,14 @@ import (
func TestRemarshal(t *testing.T) {
t.Parallel()
- v := config.New()
- v.Set("contentDir", "content")
- ns := New(newDeps(v))
+ b := hugolib.NewIntegrationTestBuilder(
+ hugolib.IntegrationTestConfig{T: t},
+ ).Build()
+
+ ns := transform.New(b.H.Deps)
c := qt.New(t)
c.Run("Roundtrip variants", func(c *qt.C) {
-
tomlExample := `title = 'Test Metadata'
[[resources]]
@@ -129,7 +131,6 @@ title: Test Metadata
}
}
-
})
c.Run("Comments", func(c *qt.C) {