Skip to content

Commit 4c2fb5c

Browse files
authored
Merge pull request #282 from hjwp/ch20
Update listings for chapter 20, fixtures + wait decorator
2 parents b01bf59 + 510517f commit 4c2fb5c

15 files changed

+615
-586
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
test_chapter_16_javascript,
3333
test_chapter_18_spiking_custom_auth,
3434
test_chapter_19_mocking,
35+
test_chapter_20_fixtures_and_wait_decorator,
3536
unit-test
3637
]
3738

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@
8585
[submodule "source/chapter_22/superlists"]
8686
path = source/chapter_page_pattern/superlists
8787
url = [email protected]:hjwp/book-example.git
88-
[submodule "source/chapter_fixtures_and_wait_decorator/superlists"]
89-
path = source/chapter_fixtures_and_wait_decorator/superlists
88+
[submodule "source/chapter_20_fixtures_and_wait_decorator/superlists"]
89+
path = source/chapter_20_fixtures_and_wait_decorator/superlists
9090
url = [email protected]:hjwp/book-example.git
9191
[submodule "source/chapter_12_organising_test_files/superlists"]
9292
path = source/chapter_12_organising_test_files/superlists

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ test_chapter_18_spiking_custom_auth: chapter_18_spiking_custom_auth.html $(TMPDI
131131
.PHONY: test_chapter_19_mocking
132132
test_chapter_19_mocking: chapter_19_mocking.html $(TMPDIR) $(VENV)/bin
133133
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_19_mocking.py
134-
.PHONY: test_chapter_fixtures_and_wait_decorator
135-
test_chapter_fixtures_and_wait_decorator: chapter_fixtures_and_wait_decorator.html $(TMPDIR) $(VENV)/bin
136-
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_fixtures_and_wait_decorator.py
134+
.PHONY: test_chapter_20_fixtures_and_wait_decorator
135+
test_chapter_20_fixtures_and_wait_decorator: chapter_20_fixtures_and_wait_decorator.html $(TMPDIR) $(VENV)/bin
136+
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_20_fixtures_and_wait_decorator.py
137137
.PHONY: test_chapter_server_side_debugging
138138
test_chapter_server_side_debugging: chapter_server_side_debugging.html $(TMPDIR) $(VENV)/bin
139139
$(VENV)/bin/pytest -s --tb=short ./tests/test_chapter_server_side_debugging.py

appendix_github_links.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Full List of Links for Each Chapter
3838
<<chapter_17_second_deploy>>:: https://github.com/hjwp/book-example/tree/chapter_17_second_deploy
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
41-
<<chapter_fixtures_and_wait_decorator>>:: https://github.com/hjwp/book-example/tree/chapter_fixtures_and_wait_decorator
41+
<<chapter_20_fixtures_and_wait_decorator>>:: https://github.com/hjwp/book-example/tree/chapter_20_fixtures_and_wait_decorator
4242
<<chapter_server_side_debugging>>:: https://github.com/hjwp/book-example/tree/chapter_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

atlas.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"part3.asciidoc",
3333
"chapter_18_spiking_custom_auth.asciidoc",
3434
"chapter_19_mocking.asciidoc",
35-
"chapter_fixtures_and_wait_decorator.asciidoc",
35+
"chapter_20_fixtures_and_wait_decorator.asciidoc",
3636
"chapter_server_side_debugging.asciidoc",
3737
"chapter_outside_in.asciidoc",
3838
"chapter_purist_unit_tests.asciidoc",

book.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ include::chapter_17_second_deploy.asciidoc[]
4343
include::part3.forbook.asciidoc[]
4444
include::chapter_18_spiking_custom_auth.asciidoc[]
4545
include::chapter_19_mocking.asciidoc[]
46-
include::chapter_fixtures_and_wait_decorator.asciidoc[]
46+
include::chapter_20_fixtures_and_wait_decorator.asciidoc[]
4747
include::chapter_server_side_debugging.asciidoc[]
4848
include::chapter_outside_in.asciidoc[]
4949
include::chapter_purist_unit_tests.asciidoc[]

0 commit comments

Comments
 (0)