forked from wilmoore/selectn.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.fixture.js
More file actions
57 lines (47 loc) · 794 Bytes
/
test.fixture.js
File metadata and controls
57 lines (47 loc) · 794 Bytes
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
'use strict'
/*!
* talks.
*/
exports.talks = [
{info: { name: 'Go Ahead, Make a Mess', feedback: [8, 9, 10] }},
{info: { name: 'Silex Anatomy', feedback: [8, 9, 10] }},
{info: { name: 'Unit Testing in Python', feedback: [8, 9, 10] }},
{info: { name: 'Setting the Stage', feedback: [8, 9, 10] }}
]
/*!
* books.
*/
exports.books = {
part: [
{ chapter: [
{ title: 'getting started' },
{ title: 'going with the flow' }
] }
]
}
/*!
* falsey.
*/
exports.falsey = {
_false: false,
_null: null,
_undefined: undefined,
_0: 0
}
/*!
* non-strings.
*/
exports.nonstring = {
'/^$/': true,
undefined: true,
false: true,
null: true,
true: true,
0: true
}
/*!
* helpers.
*/
exports.getfn = function (talk) {
return talk.info.name
}