Skip to content

Commit 1ff493e

Browse files
committed
Rename chapter 22 outside in
1 parent a0efbbe commit 1ff493e

13 files changed

+14
-14
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
path = source/chapter_21_server_side_debugging/superlists
5454
url = [email protected]:hjwp/book-example.git
5555
[submodule "source/chapter_19/superlists"]
56-
path = source/chapter_outside_in/superlists
56+
path = source/chapter_22_outside_in/superlists
5757
url = [email protected]:hjwp/book-example.git
5858
[submodule "source/chapter_20/superlists"]
5959
path = source/chapter_purist_unit_tests/superlists

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ test_chapter_20_fixtures_and_wait_decorator: chapter_20_fixtures_and_wait_decora
137137
.PHONY: test_chapter_21_server_side_debugging
138138
test_chapter_21_server_side_debugging: chapter_21_server_side_debugging.html $(TMPDIR) $(VENV)/bin
139139
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_21_server_side_debugging.py
140-
.PHONY: test_chapter_outside_in
141-
test_chapter_outside_in: chapter_outside_in.html $(TMPDIR) $(VENV)/bin
142-
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_outside_in.py
140+
.PHONY: test_chapter_22_outside_in
141+
test_chapter_22_outside_in: chapter_22_outside_in.html $(TMPDIR) $(VENV)/bin
142+
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_22_outside_in.py
143143
.PHONY: test_chapter_purist_unit_tests
144144
test_chapter_purist_unit_tests: chapter_purist_unit_tests.html $(TMPDIR) $(VENV)/bin
145145
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_purist_unit_tests.py

appendix_IX_cheat_sheet.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,6 @@ If you do find yourself writing tests with lots of mocks, and they feel
161161
painful, remember “__listen to your tests__”—ugly, mocky tests may be
162162
trying to tell you that your code could be simplified.
163163

164-
Relevant chapters: <<chapter_outside_in>>, <<chapter_purist_unit_tests>>,
164+
Relevant chapters: <<chapter_22_outside_in>>, <<chapter_purist_unit_tests>>,
165165
<<chapter_hot_lava>>
166166

appendix_bdd.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ https://pythonhosted.org/behave-django/[behave-django].
4343
**********************************************************************
4444
4545
((("code examples, obtaining and using")))I'm
46-
going to use the example from <<chapter_outside_in>>.
46+
going to use the example from <<chapter_22_outside_in>>.
4747
We have a basic to-do lists site, and we want to add a new feature:
4848
logged-in users should be able to view the lists they've authored in one place.
4949
Up until this point, all lists are effectively anonymous.

appendix_github_links.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Full List of Links for Each Chapter
4040
<<chapter_19_mocking>>:: https://github.com/hjwp/book-example/tree/chapter_19_mocking
4141
<<chapter_20_fixtures_and_wait_decorator>>:: https://github.com/hjwp/book-example/tree/chapter_20_fixtures_and_wait_decorator
4242
<<chapter_21_server_side_debugging>>:: https://github.com/hjwp/book-example/tree/chapter_21_server_side_debugging
43-
<<chapter_outside_in>>:: https://github.com/hjwp/book-example/tree/chapter_outside_in
43+
<<chapter_22_outside_in>>:: https://github.com/hjwp/book-example/tree/chapter_22_outside_in
4444
<<chapter_purist_unit_tests>>:: https://github.com/hjwp/book-example/tree/chapter_purist_unit_tests
4545
<<chapter_CI>>:: https://github.com/hjwp/book-example/tree/chapter_CI
4646
<<chapter_page_pattern>>:: https://github.com/hjwp/book-example/tree/chapter_page_pattern

atlas.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"chapter_19_mocking.asciidoc",
3535
"chapter_20_fixtures_and_wait_decorator.asciidoc",
3636
"chapter_21_server_side_debugging.asciidoc",
37-
"chapter_outside_in.asciidoc",
37+
"chapter_22_outside_in.asciidoc",
3838
"chapter_purist_unit_tests.asciidoc",
3939
"chapter_CI.asciidoc",
4040
"chapter_page_pattern.asciidoc",

book.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ include::chapter_18_spiking_custom_auth.asciidoc[]
4545
include::chapter_19_mocking.asciidoc[]
4646
include::chapter_20_fixtures_and_wait_decorator.asciidoc[]
4747
include::chapter_21_server_side_debugging.asciidoc[]
48-
include::chapter_outside_in.asciidoc[]
48+
include::chapter_22_outside_in.asciidoc[]
4949
include::chapter_purist_unit_tests.asciidoc[]
5050
include::chapter_CI.asciidoc[]
5151
include::chapter_page_pattern.asciidoc[]

chapter_07_working_incrementally.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2543,7 +2543,7 @@ YAGNI::
25432543
just because it suggests itself at the time.
25442544
Chances are, you won't use it,
25452545
or you won't have anticipated your future requirements correctly.
2546-
See <<chapter_outside_in>> for one methodology that helps us avoid this trap.
2546+
See <<chapter_22_outside_in>> for one methodology that helps us avoid this trap.
25472547
((("Test-Driven Development (TDD)", "philosophy of", "YAGNI")))
25482548
((("YAGNI (You ain&#x2019;t gonna need it!)")))
25492549

chapter_outside_in.asciidoc renamed to chapter_22_outside_in.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[[chapter_outside_in]]
1+
[[chapter_22_outside_in]]
22
Finishing "My Lists": Outside-In TDD
33
------------------------------------
44

0 commit comments

Comments
 (0)