mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 07:18:54 +00:00
3c823408ee
* This break the circular dependency between hugolib and resources/page, and allow HugoInfo to use the proper Page ans Site interfaces. * It's a little misplaced, but it makes everything easier to maintain and test, so that's well worth it.
36 lines
1.0 KiB
Go
36 lines
1.0 KiB
Go
// Copyright 2026 The Hugo Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package page
|
|
|
|
import (
|
|
"testing"
|
|
|
|
qt "github.com/frankban/quicktest"
|
|
)
|
|
|
|
func TestNewHugoInfo(t *testing.T) {
|
|
c := qt.New(t)
|
|
|
|
c.Assert(func() { NewHugoInfo(HugoInfoOptions{}) }, qt.PanicMatches, "config provider not set")
|
|
|
|
opts := HugoInfoOptions{
|
|
Conf: testConfig{environment: "development"},
|
|
}
|
|
|
|
h := NewHugoInfo(opts)
|
|
|
|
c.Assert(h.Environment(), qt.Equals, "development")
|
|
c.Assert(h.Sites(), qt.IsNil)
|
|
}
|