Skip to content

Commit 416f5c6

Browse files
committed
adding new unit testing resource
1 parent 6df0f82 commit 416f5c6

File tree

6 files changed

+27
-5
lines changed

6 files changed

+27
-5
lines changed

all.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1278,11 +1278,14 @@ <h2>Why is web development important?</h2>
12781278
applications.</p>
12791279
<h3>Python web development resources</h3>
12801280
<ul>
1281-
<li><a href="https://medium.com/@zengabor/three-takeaways-for-web-developers-after-two-weeks-of-painfully-slow-internet-9e7f6d47726e">Three takeaways for web developers after two weeks of painfully slow Internet</a>
1281+
<li>
1282+
<p><a href="https://medium.com/@zengabor/three-takeaways-for-web-developers-after-two-weeks-of-painfully-slow-internet-9e7f6d47726e">Three takeaways for web developers after two weeks of painfully slow Internet</a>
12821283
is a must-read for every web developer. Not everyone has fast Internet
12831284
service, whether because they are in a remote part of the world or they're
12841285
just in a subway tunnel. Optimizing sites so they work in those situations
1285-
is important for keeping your users happy.</li>
1286+
is important for keeping your users happy.</p>
1287+
</li>
1288+
<li></li>
12861289
</ul>
12871290
<h1>Web frameworks</h1>
12881291
<p>A web framework is a code library that makes a developer's life easier when
@@ -7104,6 +7107,11 @@ <h3>Unit testing resources</h3>
71047107
<a href="https://docs.python.org/3/library/unittest.html">unittest</a> module.</p>
71057108
</li>
71067109
<li>
7110+
<p><a href="https://www.twilio.com/blog/2014/03/unit-testing-your-twilio-app-using-pythons-flask-and-nose.html">Unit Testing Your Twilio App Using Python’s Flask and Nose</a>
7111+
is a detailed tutorial for using the nose test runner for ensuring a
7112+
Flask application is working properly.</p>
7113+
</li>
7114+
<li>
71077115
<p><a href="https://jeffknupp.com/blog/2013/12/09/improve-your-python-understanding-unit-testing/">Understanding unit testing</a>
71087116
explains why testing is important and shows how to do it effectively in
71097117
your applications.</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>2015-11-12T09:56:14Z</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>2015-11-15T12:41:35Z</updated></feed>

source/content/pages/04-web-development/01-web-development.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ applications.
2727
service, whether because they are in a remote part of the world or they're
2828
just in a subway tunnel. Optimizing sites so they work in those situations
2929
is important for keeping your users happy.
30+
31+
*

source/content/pages/08-testing/02-unit-testing.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ by writing the test cases to exercise multiple parts of code at once.
5656
unit testing with the
5757
[unittest](https://docs.python.org/3/library/unittest.html) module.
5858

59+
* [Unit Testing Your Twilio App Using Python’s Flask and Nose](https://www.twilio.com/blog/2014/03/unit-testing-your-twilio-app-using-pythons-flask-and-nose.html)
60+
is a detailed tutorial for using the nose test runner for ensuring a
61+
Flask application is working properly.
62+
5963
* [Understanding unit testing](https://jeffknupp.com/blog/2013/12/09/improve-your-python-understanding-unit-testing/)
6064
explains why testing is important and shows how to do it effectively in
6165
your applications.

unit-testing.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ <h3>Unit testing resources</h3>
8686
<a href="https://docs.python.org/3/library/unittest.html">unittest</a> module.</p>
8787
</li>
8888
<li>
89+
<p><a href="https://www.twilio.com/blog/2014/03/unit-testing-your-twilio-app-using-pythons-flask-and-nose.html">Unit Testing Your Twilio App Using Python’s Flask and Nose</a>
90+
is a detailed tutorial for using the nose test runner for ensuring a
91+
Flask application is working properly.</p>
92+
</li>
93+
<li>
8994
<p><a href="https://jeffknupp.com/blog/2013/12/09/improve-your-python-understanding-unit-testing/">Understanding unit testing</a>
9095
explains why testing is important and shows how to do it effectively in
9196
your applications.</p>

web-development.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,14 @@ <h2>Why is web development important?</h2>
4444
applications.</p>
4545
<h3>Python web development resources</h3>
4646
<ul>
47-
<li><a href="https://medium.com/@zengabor/three-takeaways-for-web-developers-after-two-weeks-of-painfully-slow-internet-9e7f6d47726e">Three takeaways for web developers after two weeks of painfully slow Internet</a>
47+
<li>
48+
<p><a href="https://medium.com/@zengabor/three-takeaways-for-web-developers-after-two-weeks-of-painfully-slow-internet-9e7f6d47726e">Three takeaways for web developers after two weeks of painfully slow Internet</a>
4849
is a must-read for every web developer. Not everyone has fast Internet
4950
service, whether because they are in a remote part of the world or they're
5051
just in a subway tunnel. Optimizing sites so they work in those situations
51-
is important for keeping your users happy.</li>
52+
is important for keeping your users happy.</p>
53+
</li>
54+
<li></li>
5255
</ul>
5356
<h3>Let's get started. What do you want to learn right now?</h3>
5457
<div class="row">

0 commit comments

Comments
 (0)