1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-08-10 22:51:31 +02:00

Move FlagSet to Options package

This commit is contained in:
Joel Speed
2020-04-13 14:20:04 +01:00
parent 1fd4ebe546
commit 189ed4de8f
3 changed files with 136 additions and 120 deletions

View File

@@ -295,6 +295,11 @@ var _ = Describe("Load", func() {
},
},
}),
Entry("with an empty Options struct, should return default values", &testOptionsTableInput{
flagSet: NewFlagSet,
input: &Options{},
expectedOutput: NewOptions(),
}),
)
})
})