Remove dead code

Signed-off-by: David Gageot <david@gageot.net>
This commit is contained in:
David Gageot 2015-10-22 11:02:10 +02:00
parent a1e610bdd3
commit 035c0de9e5
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
package drivers
type DriverOptionsMock struct {
Data map[string]interface{}
}
func (d DriverOptionsMock) String(key string) string {
return d.Data[key].(string)
}
func (d DriverOptionsMock) StringSlice(key string) []string {
return d.Data[key].([]string)
}
func (d DriverOptionsMock) Int(key string) int {
return d.Data[key].(int)
}
func (d DriverOptionsMock) Bool(key string) bool {
return d.Data[key].(bool)
}