| 131 | } |
| 132 | |
| 133 | type fakePubsub struct { |
| 134 | pubs chan string |
| 135 | subs chan subscribe |
| 136 | } |
| 137 | |
| 138 | func (f *fakePubsub) Subscribe(event string, listener pubsub.Listener) (func(), error) { |
| 139 | f.subs <- subscribe{event, listener} |
nothing calls this directly
no outgoing calls
no test coverage detected