| Index: service/user/interface.go
|
| diff --git a/service/user/interface.go b/service/user/interface.go
|
| index 4339c820a1ad15185b539d03120ea2718c65a3d5..9c4b18856d28585648933a4d2942c4606454c641 100644
|
| --- a/service/user/interface.go
|
| +++ b/service/user/interface.go
|
| @@ -16,4 +16,10 @@ type Interface interface {
|
| LogoutURL(dest string) (string, error)
|
|
|
| OAuthConsumerKey() (string, error)
|
| +
|
| + // If this implementation supports it, this will return an instance of the
|
| + // Testable object for this service, which will let you 'log in' virtual users
|
| + // in your test cases. If the implementation doesn't support it, it will
|
| + // return nil.
|
| + Testable() Testable
|
| }
|
|
|