-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtesting-lang-test.rkt
More file actions
55 lines (45 loc) · 1.29 KB
/
testing-lang-test.rkt
File metadata and controls
55 lines (45 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#lang resyntax/test
header: - #lang resyntax/test
test: "unnecessary multi-line code blocks in tests refactorable to single-line code blocks"
|-------------------
| test: "foo"
| ------------------
| (and a (and b c))
| ==================
| (and a b c)
| ------------------
|===================
| test: "foo"
| ------------------
| (and a (and b c))
| ------------------
| ------------------
| (and a b c)
| ------------------
|===================
| test: "foo"
| - (and a (and b c))
| - (and a b c)
|-------------------
test: "explicit require of default recommendations can be removed"
|-------------------
| require: resyntax/default-recommendations default-recommendations
| no-change-test: "foo"
| - (and a b c)
|===================
| no-change-test: "foo"
| - (and a b c)
|-------------------
no-change-test: "explicit require of other suites not removed"
|-------------------
| require: resyntax/default-recommendations list-shortcuts
| no-change-test: "foo"
| - (and a b c)
|-------------------
no-change-test: "explicit require of default recommendations not removed when other requires present"
|-------------------
| require: resyntax/default-recommendations default-recommendations
| require: resyntax/default-recommendations list-shortcuts
| no-change-test: "foo"
| - (and a b c)
|-------------------