(t *testing.T)
| 31 | } |
| 32 | |
| 33 | func TestEnvironmentUnsetBoolDefault(t *testing.T) { |
| 34 | env := EnvironmentOf(MapFetcher(nil)) |
| 35 | assert.True(t, env.Bool("unset", true)) |
| 36 | } |
| 37 | |
| 38 | func TestEnvironmentBoolTruthyConversion(t *testing.T) { |
| 39 | for _, c := range []EnvironmentConversionTestCase{ |
nothing calls this directly
no test coverage detected