aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/commands_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/commands/commands_test.go b/commands/commands_test.go
index dccb8572..e510ebe1 100644
--- a/commands/commands_test.go
+++ b/commands/commands_test.go
@@ -80,6 +80,12 @@ func (d *dummyData) SubjectBase() string { return "[PATCH]
func (d *dummyData) Number() int { return 0 }
func (d *dummyData) Labels() []string { return nil }
func (d *dummyData) Flags() []string { return nil }
+func (d *dummyData) IsReplied() bool { return true }
+func (d *dummyData) HasAttachment() bool { return true }
+func (d *dummyData) IsRecent() bool { return false }
+func (d *dummyData) IsUnread() bool { return false }
+func (d *dummyData) IsFlagged() bool { return false }
+func (d *dummyData) IsMarked() bool { return false }
func (d *dummyData) MessageId() string { return "123456789@foo.org" }
func (d *dummyData) Size() int { return 420 }
func (d *dummyData) OriginalText() string { return "Blah blah blah" }