mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-25 09:16:59 +03:00
1ea24dac4a
* "sq diff" initial implementation * Refactor "cli" pkg.
17 lines
403 B
Go
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)
|
|
}
|