Skip to content

Instantly share code, notes, and snippets.

@xiantail
Created December 31, 2015 08:26
Show Gist options
  • Save xiantail/d8e168e2820f7411e8b0 to your computer and use it in GitHub Desktop.
Save xiantail/d8e168e2820f7411e8b0 to your computer and use it in GitHub Desktop.
TDD with Python / Chapter 3 after unit test extended
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def home_page(requests):
return HttpResponse('<html><title>To-Do lists</title></html>')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment