diff --git a/_includes/all_possible_cases.html b/_includes/all_possible_cases.html index 28d15af..652ab72 100644 --- a/_includes/all_possible_cases.html +++ b/_includes/all_possible_cases.html @@ -52,4 +52,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/avoid_hooks.html b/_includes/avoid_hooks.html index 20f4968..4257cb9 100644 --- a/_includes/avoid_hooks.html +++ b/_includes/avoid_hooks.html @@ -64,4 +64,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/create_only_the_data_you_need.html b/_includes/create_only_the_data_you_need.html index 5692a31..71b47fd 100644 --- a/_includes/create_only_the_data_you_need.html +++ b/_includes/create_only_the_data_you_need.html @@ -32,4 +32,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/describe.html b/_includes/describe.html index 61ab3ba..8302179 100644 --- a/_includes/describe.html +++ b/_includes/describe.html @@ -46,4 +46,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/dont_use_shared_examples.html b/_includes/dont_use_shared_examples.html index 7715680..8700a52 100644 --- a/_includes/dont_use_shared_examples.html +++ b/_includes/dont_use_shared_examples.html @@ -33,4 +33,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/expect_vs_should.html b/_includes/expect_vs_should.html index 3c01aaf..7f0037b 100644 --- a/_includes/expect_vs_should.html +++ b/_includes/expect_vs_should.html @@ -22,4 +22,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/factories_not_fixtures.html b/_includes/factories_not_fixtures.html index 449fed5..0269399 100644 --- a/_includes/factories_not_fixtures.html +++ b/_includes/factories_not_fixtures.html @@ -36,4 +36,6 @@

end {% endhighlight %} + + Discuss this guideline \ No newline at end of file diff --git a/_includes/group_expectations.html b/_includes/group_expectations.html index c1dd66a..1b16dfa 100644 --- a/_includes/group_expectations.html +++ b/_includes/group_expectations.html @@ -42,4 +42,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/instance_double_over_double.html b/_includes/instance_double_over_double.html index 47da8e3..0970236 100644 --- a/_includes/instance_double_over_double.html +++ b/_includes/instance_double_over_double.html @@ -42,4 +42,6 @@

the User class does not implement the instance method: name. Perhaps you meant to use `class_double` instead? {% endhighlight %} + + Discuss this guideline diff --git a/_includes/lets_not.html b/_includes/lets_not.html index d973d03..fe9d34e 100644 --- a/_includes/lets_not.html +++ b/_includes/lets_not.html @@ -52,4 +52,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/leverage_described_class.html b/_includes/leverage_described_class.html index 64610ae..dc2a357 100644 --- a/_includes/leverage_described_class.html +++ b/_includes/leverage_described_class.html @@ -46,4 +46,6 @@

If the class Pilot ever gets renamed, one just need to change it at the top level describe.

+ + Discuss this guideline \ No newline at end of file diff --git a/_includes/mock_external_dependencies.html b/_includes/mock_external_dependencies.html index 7af7fc6..4e2f61a 100644 --- a/_includes/mock_external_dependencies.html +++ b/_includes/mock_external_dependencies.html @@ -65,4 +65,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/redundant_require.html b/_includes/redundant_require.html index 0ee7d5a..5bbc11b 100644 --- a/_includes/redundant_require.html +++ b/_includes/redundant_require.html @@ -32,4 +32,5 @@

{% endhighlight %} + Discuss this guideline \ No newline at end of file diff --git a/_includes/request_vs_controller.html b/_includes/request_vs_controller.html index c02dbf5..d83f6c4 100644 --- a/_includes/request_vs_controller.html +++ b/_includes/request_vs_controller.html @@ -43,4 +43,6 @@

end {% endhighlight %} + + Discuss this guideline \ No newline at end of file diff --git a/_includes/short_description.html b/_includes/short_description.html index 254582e..96429ad 100644 --- a/_includes/short_description.html +++ b/_includes/short_description.html @@ -31,4 +31,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/stub_env_vars.html b/_includes/stub_env_vars.html index 48a56f5..e6d7e5b 100644 --- a/_includes/stub_env_vars.html +++ b/_includes/stub_env_vars.html @@ -52,4 +52,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/stub_http_requests.html b/_includes/stub_http_requests.html index f8601b5..582ec04 100644 --- a/_includes/stub_http_requests.html +++ b/_includes/stub_http_requests.html @@ -42,4 +42,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/use_contexts.html b/_includes/use_contexts.html index 09cd464..6305bed 100644 --- a/_includes/use_contexts.html +++ b/_includes/use_contexts.html @@ -34,4 +34,6 @@

end {% endhighlight %} + + Discuss this guideline diff --git a/_includes/use_subject.html b/_includes/use_subject.html index 5751d4f..632d940 100644 --- a/_includes/use_subject.html +++ b/_includes/use_subject.html @@ -59,4 +59,5 @@

{% endhighlight %} + Discuss this guideline \ No newline at end of file diff --git a/_sass/custom/custom.scss b/_sass/custom/custom.scss index f87cfaa..bb1f4aa 100644 --- a/_sass/custom/custom.scss +++ b/_sass/custom/custom.scss @@ -25,6 +25,15 @@ // } } +.discuss-link { + display: inline-block; + padding-top: 15px; + + &::after { + content: " →"; + } +} + .example, .bad, .good,