forked from evenbetterspecs/evenbetterspecs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
81 lines (76 loc) · 2.13 KB
/
_config.yml
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
title: Even Better Specs
description: Guidelines for Maintainable Tests
theme: just-the-docs
url: https://evenbetterspecs.github.io
favicon_ico: "/favicon.ico"
ga_tracking: G-81T9RLN6RW
# aux_links:
# GitHub: https://github.com/evenbetterspecs/evenbetterspecs.github.io
# External navigation links
nav_external_links:
# - title: What is it
# url: "#what-is-it"
# hide_icon: true
# - title: Guiding principles
# url: "#guiding-principles"
# hide_icon: true
- title: Describe what you are testing
url: "#describe-what-you-are-testing"
hide_icon: true
- title: Use contexts
url: "#use-contexts"
hide_icon: true
- title: Factories, not fixtures
url: "#factories-not-fixtures"
hide_icon: true
- title: Leverage described class
url: "#leverage-described-class"
hide_icon: true
- title: Use subject
url: "#use-subject"
hide_icon: true
- title: Short description
url: "#short-description"
hide_icon: true
- title: Group expectations
url: "#group-expectations"
hide_icon: true
- title: All possible cases
url: "#all-possible-cases"
hide_icon: true
- title: Request vs controller specs
url: "#request-vs-controller-specs"
hide_icon: true
- title: Expect vs should
url: "#expect-vs-should"
hide_icon: true
- title: Redundant require
url: "#redundant-require"
hide_icon: true
- title: Instance double over double
url: "#instance-double-over-double"
hide_icon: true
- title: Let's not
url: "#lets-not"
hide_icon: true
- title: Avoid hooks
url: "#avoid-hooks"
hide_icon: true
- title: Don't use shared examples
url: "#dont-use-shared-examples"
hide_icon: true
- title: Mock external dependencies
url: "#mock-external-dependencies"
hide_icon: true
- title: Stub HTTP requests
url: "#stub-http-requests"
hide_icon: true
- title: Stub environment variables
url: "#stub-environment-variables"
hide_icon: true
- title: Create only the data you need
url: "#create-only-the-data-you-need"
hide_icon: true
- title: Who is using it
url: "#who-is-using-it"
hide_icon: true