(t *testing.T)
| 53 | } |
| 54 | |
| 55 | func TestCustomFormatAndDocsURL(t *testing.T) { |
| 56 | desc := env.Int("TEST_INT"). |
| 57 | WithFormat("custom integer format"). |
| 58 | WithDocsURL("https://custom.docs.url") |
| 59 | |
| 60 | assert.Contains(t, desc.ErrorEmpty().Error(), "custom.docs.url") |
| 61 | } |
nothing calls this directly
no test coverage detected