Added check for diff ignores

This commit is contained in:
2018-03-09 13:42:45 +01:00
parent c95355383e
commit 8a57178664
9 changed files with 88 additions and 46 deletions

View File

@ -8,8 +8,13 @@ type Genres struct {
GenresB []string
}
// String returns the description.
func (diff *Genres) String() string {
// Type returns the diff type.
func (diff *Genres) Type() string {
return "Genres"
}
// Explanation returns the description.
func (diff *Genres) Explanation() string {
return "Genres are different"
}