summary refs log tree commit diff stats
path: root/tests/stdlib/tmitems.nim
Commit message (Collapse)AuthorAgeFilesLines
* Added deques module, deprecating queuesRuslan Mustakov2016-11-241-5/+5
|
* Fix tmitems test for changed behaviour of jsondef2016-02-241-2/+2
|
* Fix test cases for JSON object changesdef2016-02-241-1/+1
|
* Merge branch 'mget' of https://github.com/def-/Nim into def--mgetAraq2015-10-131-1/+1
|\ | | | | | | | | | | | | | | | | | | Conflicts: lib/pure/collections/critbits.nim lib/pure/collections/tables.nim lib/pure/xmltree.nim lib/system/sets.nim tests/collections/ttables.nim tests/collections/ttablesref.nim
| * Rename mget to `[]`def2015-03-311-1/+1
| | | | | | | | | | | | | | | | | | - In sets, tables, strtabs, critbits, xmltree - This uses the new var parameter overloading - mget variants still exist, but are deprecated in favor of `[]` - Includes tests and fixed tests and usages of mget - The non-var `[]` now throws an exception instead of returning binary 0 or an empty string
* | Add "safety compilation". Improved, fixed messagesOscar Campbell2015-06-041-2/+2
|/ | | | | | | | - node ext searcher also looks for "iojs" if no node(js?) found. - koch ensures the local work dir compiler is freshly compiled before executing the tests. - the tester can only run in the repo dir - now the compiler and libs used are also explicitly the local dirs - so no confusion from system wide pathing ("sufficiently sandboxed"). - fixed expectations in tmitems.nim test to match changes in json mod. - re-layouted the columns / row printing slightly, making test fails pop out more, and everything "normal" layed back.
* fixed minor bugs; cleaned up testsAraq2015-02-121-1/+1
|
* apparently the json spacing changedSimon Hafner2015-02-081-1/+1
|
* Add tests for mitemsdef2015-01-291-0/+136
tines' href='/akkartik/mu/commit/cpp/039wait.cc?h=main&id=c76b49e74ad8b66ac2c077dc0da62c2846131585'>c76b49e7 ^
795f5244 ^
166e3c0d ^



c76b49e7 ^

c6034af3 ^

c76b49e7 ^

795f5244 ^

c76b49e7 ^





ac0e9db5 ^
05d17773 ^
9d670bb5 ^
795f5244 ^
dd2e01e4 ^
05d17773 ^
3a622511 ^
c76b49e7 ^

363685b8 ^
1ea1bd9c ^
363685b8 ^


bc643692 ^
83d8299d ^
5497090a ^
363685b8 ^
5497090a ^
363685b8 ^

bc643692 ^
363685b8 ^
6e698858 ^




363685b8 ^




ac0e9db5 ^
363685b8 ^





795f5244 ^
166e3c0d ^
363685b8 ^
166e3c0d ^
795f5244 ^
e4630643 ^

5f98a10c ^
795f5244 ^
e4630643 ^

166e3c0d ^



e4630643 ^
5f98a10c ^
e4630643 ^

363685b8 ^
6e698858 ^
cdd6fd09 ^
363685b8 ^



9d670bb5 ^


ac0e9db5 ^
05d17773 ^

ac0e9db5 ^
e4630643 ^
ac0e9db5 ^
6e698858 ^
dd2e01e4 ^
05d17773 ^

363685b8 ^


134dad7c ^



795f5244 ^
166e3c0d ^



134dad7c ^

ac0e9db5 ^
134dad7c ^

134dad7c ^






ac0e9db5 ^

134dad7c ^







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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167