Skip to content

Commit 0892f8f

Browse files
committed
add missing test files
1 parent f6d6f65 commit 0892f8f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tests/robotcode/language_server/robotframework/parts/data/hover.robot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
*** Settings ***
22
Library Collections
33
# ^^^^^^^^^^^ library import by module name: re.match(r'## Library \*Collections\*.*', value)
4-
Library ${CURDIR}/lib/myvariables.py
4+
Library ${CURDIR}/libs/myvariables.py
55
# ^^^^^^^^^^^^^^ library import by path name: re.match(r'## Library \*myvariables.*', value)
66
# TODO ^^^^^^^^^ variable in library name: value == '(builtin variable) ${CURDIR}'
7-
Variables ${CURDIR}/lib/myvariables.py
7+
Variables ${CURDIR}/libs/myvariables.py
88
Resource ${CURDIR}/resources/firstresource.resource
99
# ^^^^^^^^^^^^^^ library import by path name: re.match(r'## Resource \*firstresource.*', value)
1010

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def dummy(): # type: ignore
2+
pass

0 commit comments

Comments
 (0)