diff options
author | EuAndreh <eu@euandre.org> | 2024-12-10 11:14:54 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-12-10 11:14:54 -0300 |
commit | e4cb98c21f14f8b1f6d36fde56cb6c5c49b0db88 (patch) | |
tree | 3bd5592fa69d363c895135df80472ffc58a65d23 /grammar/lexical | |
parent | cmd/: Simplify flag usage (diff) | |
download | cotia-e4cb98c21f14f8b1f6d36fde56cb6c5c49b0db88.tar.gz cotia-e4cb98c21f14f8b1f6d36fde56cb6c5c49b0db88.tar.xz |
Start building test files
Diffstat (limited to 'grammar/lexical')
-rw-r--r-- | grammar/lexical/compiler_test.go | 2 | ||||
-rw-r--r-- | grammar/lexical/dfa/dfa_test.go | 4 | ||||
-rw-r--r-- | grammar/lexical/dfa/tree_test.go | 4 | ||||
-rw-r--r-- | grammar/lexical/parser/parser_test.go | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/grammar/lexical/compiler_test.go b/grammar/lexical/compiler_test.go index f2ef0f2..3336048 100644 --- a/grammar/lexical/compiler_test.go +++ b/grammar/lexical/compiler_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - spec "github.com/nihei9/vartan/spec/grammar" + spec "spec/grammar" ) func TestLexSpec_Validate(t *testing.T) { diff --git a/grammar/lexical/dfa/dfa_test.go b/grammar/lexical/dfa/dfa_test.go index ae71875..9af9aeb 100644 --- a/grammar/lexical/dfa/dfa_test.go +++ b/grammar/lexical/dfa/dfa_test.go @@ -4,8 +4,8 @@ import ( "strings" "testing" - "github.com/nihei9/vartan/grammar/lexical/parser" - spec "github.com/nihei9/vartan/spec/grammar" + "grammar/lexical/parser" + spec "spec/grammar" ) func TestGenDFA(t *testing.T) { diff --git a/grammar/lexical/dfa/tree_test.go b/grammar/lexical/dfa/tree_test.go index e0abe64..188fe95 100644 --- a/grammar/lexical/dfa/tree_test.go +++ b/grammar/lexical/dfa/tree_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - "github.com/nihei9/vartan/grammar/lexical/parser" - spec "github.com/nihei9/vartan/spec/grammar" + "grammar/lexical/parser" + spec "spec/grammar" ) func TestByteTree(t *testing.T) { diff --git a/grammar/lexical/parser/parser_test.go b/grammar/lexical/parser/parser_test.go index d6cc4a8..e876d3b 100644 --- a/grammar/lexical/parser/parser_test.go +++ b/grammar/lexical/parser/parser_test.go @@ -6,8 +6,8 @@ import ( "strings" "testing" - spec "github.com/nihei9/vartan/spec/grammar" - "github.com/nihei9/vartan/ucd" + spec "spec/grammar" + "ucd" ) func TestParse(t *testing.T) { |