Skip to content

Commit 9483dbd

Browse files
committed
Rename chapter 21
1 parent ae1c0f6 commit 9483dbd

12 files changed

+16
-16
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
path = source/chapter_19_mocking/superlists
5151
url = [email protected]:hjwp/book-example.git
5252
[submodule "source/chapter_18/superlists"]
53-
path = source/chapter_server_side_debugging/superlists
53+
path = source/chapter_21_server_side_debugging/superlists
5454
url = [email protected]:hjwp/book-example.git
5555
[submodule "source/chapter_19/superlists"]
5656
path = source/chapter_outside_in/superlists

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ test_chapter_19_mocking: chapter_19_mocking.html $(TMPDIR) $(VENV)/bin
134134
.PHONY: test_chapter_20_fixtures_and_wait_decorator
135135
test_chapter_20_fixtures_and_wait_decorator: chapter_20_fixtures_and_wait_decorator.html $(TMPDIR) $(VENV)/bin
136136
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_20_fixtures_and_wait_decorator.py
137-
.PHONY: test_chapter_server_side_debugging
138-
test_chapter_server_side_debugging: chapter_server_side_debugging.html $(TMPDIR) $(VENV)/bin
139-
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_server_side_debugging.py
137+
.PHONY: test_chapter_21_server_side_debugging
138+
test_chapter_21_server_side_debugging: chapter_21_server_side_debugging.html $(TMPDIR) $(VENV)/bin
139+
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_21_server_side_debugging.py
140140
.PHONY: test_chapter_outside_in
141141
test_chapter_outside_in: chapter_outside_in.html $(TMPDIR) $(VENV)/bin
142142
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_outside_in.py

appendix_IX_cheat_sheet.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Selenium/Functional Testing Best Practices
122122
123123
* Look into BDD tools as another way of structuring your FTs.
124124
125-
Relevant chapters: <<chapter_server_side_debugging>>, <<chapter_CI>>,
125+
Relevant chapters: <<chapter_21_server_side_debugging>>, <<chapter_CI>>,
126126
<<chapter_page_pattern>>
127127

128128
Outside-In, Test Isolation Versus Integrated Tests, and Mocking

appendix_github_links.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Full List of Links for Each Chapter
3939
<<chapter_18_spiking_custom_auth>>:: https://github.com/hjwp/book-example/tree/chapter_18_spiking_custom_auth
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
42-
<<chapter_server_side_debugging>>:: https://github.com/hjwp/book-example/tree/chapter_server_side_debugging
42+
<<chapter_21_server_side_debugging>>:: https://github.com/hjwp/book-example/tree/chapter_21_server_side_debugging
4343
<<chapter_outside_in>>:: https://github.com/hjwp/book-example/tree/chapter_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

atlas.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"chapter_18_spiking_custom_auth.asciidoc",
3434
"chapter_19_mocking.asciidoc",
3535
"chapter_20_fixtures_and_wait_decorator.asciidoc",
36-
"chapter_server_side_debugging.asciidoc",
36+
"chapter_21_server_side_debugging.asciidoc",
3737
"chapter_outside_in.asciidoc",
3838
"chapter_purist_unit_tests.asciidoc",
3939
"chapter_CI.asciidoc",

book.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ include::part3.forbook.asciidoc[]
4444
include::chapter_18_spiking_custom_auth.asciidoc[]
4545
include::chapter_19_mocking.asciidoc[]
4646
include::chapter_20_fixtures_and_wait_decorator.asciidoc[]
47-
include::chapter_server_side_debugging.asciidoc[]
47+
include::chapter_21_server_side_debugging.asciidoc[]
4848
include::chapter_outside_in.asciidoc[]
4949
include::chapter_purist_unit_tests.asciidoc[]
5050
include::chapter_CI.asciidoc[]

chapter_server_side_debugging.asciidoc renamed to chapter_21_server_side_debugging.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[[chapter_server_side_debugging]]
1+
[[chapter_21_server_side_debugging]]
22
== Server-Side Debugging
33

44
.Warning, Chapter Not Updated.

tests/chapters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"chapter_18_spiking_custom_auth",
2323
"chapter_19_mocking",
2424
"chapter_20_fixtures_and_wait_decorator",
25-
"chapter_server_side_debugging",
25+
"chapter_21_server_side_debugging",
2626
"chapter_outside_in",
2727
"chapter_purist_unit_tests",
2828
"chapter_CI",

tests/test_appendix_bdd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class AppendixVTest(ChapterTest):
88
chapter_name = 'appendix_bdd'
9-
previous_chapter = 'chapter_server_side_debugging'
9+
previous_chapter = 'chapter_21_server_side_debugging'
1010

1111
def test_listings_and_commands_and_output(self):
1212
self.parse_listings()

0 commit comments

Comments
 (0)