mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
parent
b7ca4c1668
commit
e93a8766e5
2 changed files with 10 additions and 4 deletions
|
@ -165,6 +165,12 @@ match_test_suite = [
|
|||
TestItem{"aba", r"a*(b*)*a",0,3},
|
||||
TestItem{"/*x*/", r"/\**(.*)\**/",0,5},
|
||||
TestItem{"/*x*/", r"/*(.*)*/",0,5},
|
||||
|
||||
// test last IST check
|
||||
TestItem{"refs/remotes/origin/mastep", r"refs/remotes/origin/(.*)",0,26},
|
||||
TestItem{"refs/remotes/origin/master", r"refs/remotes/origin/(.*)",0,26},
|
||||
TestItem{"refs/remotes/origin/mastep", r"refs/remotes/origin/(\w*)",0,26},
|
||||
TestItem{"refs/remotes/origin/master", r"refs/remotes/origin/(\w*)",0,26},
|
||||
]
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue