github.com/insomniacslk/u-root@v0.0.0-20200717035308-96b791510d76/cmds/core/elvish/edit/history/fuser_test.go (about)

     1  package history
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/u-root/u-root/cmds/core/elvish/store"
     7  )
     8  
     9  var fuserStore = store.NewCmdHistory("store 1")
    10  
    11  func TestFuser(t *testing.T) {
    12  	_, err := NewFuser(fuserStore)
    13  	if err != nil {
    14  		t.Errorf("NewFuser -> error %v, want nil", err)
    15  	}
    16  	// fix this fucking mess later.
    17  
    18  }