github.com/juju/juju@v0.0.0-20240327075706-a90865de2538/worker/meterstatus/export_test.go (about) 1 // Copyright 2020 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package meterstatus 5 6 import ( 7 "github.com/juju/clock" 8 "github.com/juju/loggo" 9 ) 10 11 func NewLimitedContext(unitName string) *limitedContext { 12 return newLimitedContext(hookConfig{ 13 unitName: unitName, 14 clock: clock.WallClock, 15 logger: loggo.GetLogger("test"), 16 }) 17 }