File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 55
55
${def } = Set Variable xpath:(//span[contains(@class, 'cm-variable')][contains(text(), 'fib')])[last()]
56
56
Editor Shows Features for Language R example.R Diagnostics=Put spaces around all infix operators Jump to Definition=${def }
57
57
58
+ Robot Framework
59
+ [Tags] gh:332
60
+ ${def } = Set Variable xpath:(//span[contains(@class, 'cm-keyword')][contains(text(), 'Special Log')])[last()]
61
+ Editor Shows Features for Language Robot Framework example.robot Diagnostics=Undefined keyword Jump to Definition=${def }
62
+
58
63
SCSS
59
64
${def } = Set Variable xpath:(//span[contains(@class, 'cm-variable-2')][contains(text(), 'primary-color')])[last()]
60
65
Editor Shows Features for Language SCSS example.scss Diagnostics=Do not use empty rulesets Jump to Definition=${def }
Original file line number Diff line number Diff line change
1
+ *** Settings ***
2
+ Library SeleniumLibrary
3
+ Force Tags atest:example
4
+
5
+ *** Variables ***
6
+ ${ABC } abc
7
+
8
+ *** Keywords ***
9
+ Special Log
10
+ [Arguments] ${log }
11
+ [Documentation] a special log
12
+ Log ${log.upper() } !
13
+
14
+ *** Test Cases ***
15
+ Log Something
16
+ Special Log ${ABC }
17
+ Something that doesn't exist
Original file line number Diff line number Diff line change @@ -100,6 +100,10 @@ def atest(attempt, extra_args):
100
100
f"OS:{ OS } " ,
101
101
"--variable" ,
102
102
f"PY:{ PY } " ,
103
+ # don't ever test our examples
104
+ "--exclude" ,
105
+ "atest:example" ,
106
+ # random ensures there's not inter-test coupling
103
107
"--randomize" ,
104
108
"all" ,
105
109
* (extra_args or []),
You can’t perform that action at this time.
0 commit comments