sq/cli/diff/internal/go-udiff/myers/diff_test.go
Neil O'Toole 1ea24dac4a
#229: sq diff core (#230)
* "sq diff" initial implementation

* Refactor "cli" pkg.
2023-05-19 08:24:18 -06:00

17 lines
403 B
Go

// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package myers_test
import (
"testing"
"github.com/neilotoole/sq/cli/diff/internal/go-udiff/difftest"
"github.com/neilotoole/sq/cli/diff/internal/go-udiff/myers"
)
func TestDiff(t *testing.T) {
difftest.DiffTest(t, myers.ComputeEdits)
}