mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-02 11:56:02 +02:00
* authenticate: set cookie secure as default. * authenticate: remove single flight provider. * authenticate/providers: Rename “ProviderData” to “IdentityProvider” * authenticate/providers: Fixed an issue where scopes were not being overwritten * proxy/authenticate : http client code removed. * proxy: standardized session variable names between services. * docs: change basic docker-config to be an “all-in-one” example with no nginx load. * docs: nginx balanced docker compose example with intra-ingress settings. * license: attribution for adaptation of goji’s middleware pattern.
13 lines
243 B
Go
13 lines
243 B
Go
package templates // import "github.com/pomerium/pomerium/internal/templates"
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestTemplatesCompile(t *testing.T) {
|
|
templates := New()
|
|
if templates == nil {
|
|
t.Errorf("unexpected nil value %#v", templates)
|
|
|
|
}
|
|
}
|