You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You should see a browser window pop up trying to open _localhost:8000_,
117
118
showing the "Unable to connect" error page.
118
119
If you switch back to your console,
@@ -144,7 +145,7 @@ image::images/tdd3_0102.png["A pop-up window saying 'Firefox is trying to instal
144
145
This happens when Firefox has automatically downloaded a new version,
145
146
in the background.
146
147
When Selenium tries to load a fresh Firefox session,
147
-
it wants to install the latest version of its "geckodriver" plug-in.
148
+
it wants to install the latest version of its "geckodriver" plugin.
148
149
149
150
To resolve the issue, you have to close the Selenium browser window,
150
151
go back to your main browser window
@@ -204,6 +205,7 @@ NOTE: Make sure your project folder looks exactly like this!
204
205
205
206
The _superlists_ folder is intended for stuff that applies to the whole project--like _settings.py_, which is used to store global configuration information for the site.
206
207
208
+
[role="pagebreak-before"]
207
209
But the main thing to notice is _manage.py_.
208
210
That's Django's Swiss Army knife,
209
211
and one of the things it can do is run((("development server", "running with manage.py")))((("manage.py file", "running a development server"))) a development server.
@@ -273,7 +275,7 @@ image::images/tdd3_0103.png["Screenshot of Django Installed Successfully Screen"
273
275
So many introductions to TDD ((("Roman numerals in examples")))use Roman numerals in their examples
274
276
that it has become a running joke--I even started writing one myself.
275
277
If you're curious, you can find it
276
-
on https://github.com/hjwp/tdd-roman-numeral-calculator/[my GitHub page].
278
+
on https://github.com/hjwp/tdd-roman-numeral-calculator[my GitHub page].
277
279
278
280
Roman numerals, as an example, are both good and bad.
279
281
It's a nice "toy" problem, reasonably limited in scope,
@@ -291,7 +293,7 @@ more like real life, and less like that of a toy project.
@@ -353,7 +356,7 @@ hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
353
356
hint: 'development'. The just-created branch can be renamed via this command:
354
357
hint:
355
358
hint: git branch -m <name>
356
-
Initialised empty Git repository in ...goat-book/.git/
359
+
Initialized empty Git repository in ...goat-book/.git/
357
360
----
358
361
359
362
Consider following the advice and choosing an explicit default branch name.((("default branch name in Git")))((("Git", "default branch name, choosing")))
0 commit comments