add test for notification command
This commit is contained in:
parent
ea84240cce
commit
86066b9561
2 changed files with 32 additions and 3 deletions
|
@ -17,11 +17,11 @@ func cmdNotification(c *cli.Context) error {
|
|||
for _, n := range notifications {
|
||||
if n.Status != nil {
|
||||
color.Set(color.FgHiRed)
|
||||
fmt.Print(n.Account.Username)
|
||||
fmt.Fprint(c.App.Writer, n.Account.Username)
|
||||
color.Set(color.Reset)
|
||||
fmt.Println(" " + n.Type)
|
||||
fmt.Fprintln(c.App.Writer, " "+n.Type)
|
||||
s := n.Status
|
||||
fmt.Println(textContent(s.Content))
|
||||
fmt.Fprintln(c.App.Writer, textContent(s.Content))
|
||||
}
|
||||
}
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue