~sergiusens/snappy/usersCreate

« back to all changes in this revision

Viewing changes to snappy/common_test.go

Don't pass in a nil reporter to installClick for remote parts. by chipaca approved by mvo

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
        spin     bool
162
162
        spinMsg  string
163
163
        written  int
 
164
        notified []string
164
165
}
165
166
 
166
167
func (m *MockProgressMeter) Start(total float64) {
186
187
func (m *MockProgressMeter) Agreed(string, string) bool {
187
188
        return false
188
189
}
189
 
func (m *MockProgressMeter) Notify(string) {}
 
190
func (m *MockProgressMeter) Notify(msg string) {
 
191
        m.notified = append(m.notified, msg)
 
192
}