mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-11 16:15:46 +00:00
37dc273148
- Make structs smaller - Introduce Result struct and use it to represent matched items instead of reusing Item struct for that purpose - Avoid unnecessary memory allocation - Avoid growing slice from the initial capacity - Code cleanup
24 lines
484 B
Go
24 lines
484 B
Go
package fzf
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/junegunn/fzf/src/util"
|
|
)
|
|
|
|
func TestStringPtr(t *testing.T) {
|
|
orig := []byte("\x1b[34mfoo")
|
|
text := []byte("\x1b[34mbar")
|
|
item := Item{origText: &orig, text: util.ToChars(text)}
|
|
if item.AsString(true) != "foo" || item.AsString(false) != string(orig) {
|
|
t.Fail()
|
|
}
|
|
if item.AsString(true) != "foo" {
|
|
t.Fail()
|
|
}
|
|
item.origText = nil
|
|
if item.AsString(true) != string(text) || item.AsString(false) != string(text) {
|
|
t.Fail()
|
|
}
|
|
}
|