forked from Mirrors/bubbletea
fix: update tests for space input
This commit is contained in:
parent
d3fb1b707a
commit
bfb166822e
|
@ -8,7 +8,8 @@ import (
|
||||||
func TestKeyString(t *testing.T) {
|
func TestKeyString(t *testing.T) {
|
||||||
t.Run("alt+space", func(t *testing.T) {
|
t.Run("alt+space", func(t *testing.T) {
|
||||||
if got := KeyMsg(Key{
|
if got := KeyMsg(Key{
|
||||||
Type: KeySpace,
|
Type: KeyRunes,
|
||||||
|
Runes: []rune{' '},
|
||||||
Alt: true,
|
Alt: true,
|
||||||
}).String(); got != "alt+ " {
|
}).String(); got != "alt+ " {
|
||||||
t.Fatalf(`expected a "alt+ ", got %q`, got)
|
t.Fatalf(`expected a "alt+ ", got %q`, got)
|
||||||
|
@ -35,7 +36,10 @@ func TestKeyString(t *testing.T) {
|
||||||
|
|
||||||
func TestKeyTypeString(t *testing.T) {
|
func TestKeyTypeString(t *testing.T) {
|
||||||
t.Run("space", func(t *testing.T) {
|
t.Run("space", func(t *testing.T) {
|
||||||
if got := KeySpace.String(); got != " " {
|
if got := KeyMsg(Key{
|
||||||
|
Type: KeyRunes,
|
||||||
|
Runes: []rune{' '},
|
||||||
|
}).String(); got != " " {
|
||||||
t.Fatalf(`expected a " ", got %q`, got)
|
t.Fatalf(`expected a " ", got %q`, got)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue