Skip to content

Commit 565863d

Browse files
committed
TDD in Django book in Django tutorials
1 parent 71dc223 commit 565863d

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

django.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,14 @@ <h2>Django tutorials</h2>
9595
to the web framework.</p>
9696
</li>
9797
<li>
98+
<p><a href="http://www.obeythetestinggoat.com/">Test-Driven Development with Python</a> focuses on web development using
99+
Django, with some coverage of JavaScript (inescapable for any web programmer). This book uses a concrete
100+
example—the development of a website using the Django web framework, from scratch—to teach the TDD methodology,
101+
and how it applies to web programming, from the basics of database integration and javascript, going via
102+
browser-automation tools like Selenium, to advanced (and trendy) topics like NoSQL, websockets and Async
103+
programming.The book is available to read online for free.</p>
104+
</li>
105+
<li>
98106
<p>The <a href="http://www.reddit.com/r/django">Django subreddit</a> often has links to
99107
the latest resources for learning Django and is also a good spot to ask
100108
questions about it.</p>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-11-09T11:29:49Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-11-09T23:19:26Z</updated></feed>

source/content/pages/02-web-frameworks/0202-django.markdown

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,13 @@ syntax and language semantics first before diving into web development.
7979
* [Effective Django](http://effectivedjango.com/) is another free introduction
8080
to the web framework.
8181

82+
* [Test-Driven Development with Python](http://www.obeythetestinggoat.com/) focuses on web development using
83+
Django, with some coverage of JavaScript (inescapable for any web programmer). This book uses a concrete
84+
example—the development of a website using the Django web framework, from scratch—to teach the TDD methodology,
85+
and how it applies to web programming, from the basics of database integration and javascript, going via
86+
browser-automation tools like Selenium, to advanced (and trendy) topics like NoSQL, websockets and Async
87+
programming.The book is available to read online for free.
88+
8289
* The [Django subreddit](http://www.reddit.com/r/django) often has links to
8390
the latest resources for learning Django and is also a good spot to ask
8491
questions about it.

0 commit comments

Comments
 (0)