aboutsummaryrefslogtreecommitdiffstats
path: root/bug/label_test.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-11-03 13:09:55 +0000
committerGitHub <noreply@github.com>2019-11-03 13:09:55 +0000
commit8c7c9880b1adcf876ad63ea39e46e62bd7ebde5d (patch)
treef9c6369a6593e3c00cfb3c0b45009dfb6d055d7b /bug/label_test.go
parentf5193cc76dd1a1c1bb55194a64ef90bae2278115 (diff)
parent912b5ca320891f2a4f1a88f1a137ce8ee46a1a03 (diff)
downloadgit-bug-8c7c9880b1adcf876ad63ea39e46e62bd7ebde5d.tar.gz
Merge pull request #228 from ludovicm67/patch-cli-label-colors
Display label colors in termui
Diffstat (limited to 'bug/label_test.go')
-rw-r--r--bug/label_test.go17
1 files changed, 8 insertions, 9 deletions
diff --git a/bug/label_test.go b/bug/label_test.go
index f87c7411..225e1352 100644
--- a/bug/label_test.go
+++ b/bug/label_test.go
@@ -1,36 +1,35 @@
package bug
import (
- "image/color"
"testing"
"github.com/stretchr/testify/require"
)
func TestLabelRGBA(t *testing.T) {
- rgba := Label("test").RGBA()
- expected := color.RGBA{R: 255, G: 87, B: 34, A: 255}
+ rgba := Label("test").Color()
+ expected := LabelColor{R: 255, G: 87, B: 34, A: 255}
require.Equal(t, expected, rgba)
}
func TestLabelRGBASimilar(t *testing.T) {
- rgba := Label("test1").RGBA()
- expected := color.RGBA{R: 0, G: 188, B: 212, A: 255}
+ rgba := Label("test1").Color()
+ expected := LabelColor{R: 0, G: 188, B: 212, A: 255}
require.Equal(t, expected, rgba)
}
func TestLabelRGBAReverse(t *testing.T) {
- rgba := Label("tset").RGBA()
- expected := color.RGBA{R: 233, G: 30, B: 99, A: 255}
+ rgba := Label("tset").Color()
+ expected := LabelColor{R: 233, G: 30, B: 99, A: 255}
require.Equal(t, expected, rgba)
}
func TestLabelRGBAEqual(t *testing.T) {
- color1 := Label("test").RGBA()
- color2 := Label("test").RGBA()
+ color1 := Label("test").Color()
+ color2 := Label("test").Color()
require.Equal(t, color1, color2)
}