Selaa lähdekoodia

README.md updated for mid-chapter 7 for break/bed

david 5 vuotta sitten
vanhempi
commit
fdfbc1c3db
4 muutettua tiedostoa jossa 23 lisäystä ja 9 poistoa
  1. 1 1
      README.md
  2. 3 1
      SCRATCHPAD.txt
  3. 4 1
      lists/models.py
  4. 15 6
      lists/tests.py

+ 1 - 1
README.md

@@ -4,7 +4,7 @@
 
 [GitHub Repo](https://github.com/hjwp/Book-TDD-Web-Dev-Python)
 
-[Last At](https://www.obeythetestinggoat.com/book/chapter_explicit_waits_1.html) (Chapter 6)
+[Last At](https://www.obeythetestinggoat.com/book/chapter_working_incrementally.html) Foreign Key Relationship (Chapter 7)
 
 ### TDD Order Of Operations:
 

+ 3 - 1
SCRATCHPAD.txt

@@ -8,4 +8,6 @@
 + Adjust model so that items are associated with different lists
 + Add unique URLs for each list
 - Add a URL for creating a new list via POST
-+ Add URLs for adding a new item to an existing list via POST
++ Add URLs for adding a new item to an existing list via POST
+
++ Make a URL to view all lists made (Incase you loose the link that link can be found again)

+ 4 - 1
lists/models.py

@@ -1,4 +1,7 @@
 from django.db import models
 
 class Item(models.Model):
-    text = models.TextField(default='')
+    text = models.TextField(default='')
+
+class List(models.Model):
+    pass

+ 15 - 6
lists/tests.py

@@ -4,7 +4,7 @@ from django.http import HttpRequest
 from django.template.loader import render_to_string
 
 from lists.views import home_page
-from lists.models import Item
+from lists.models import Item, List
 
 class HomePageTest(TestCase):
 
@@ -51,24 +51,33 @@ class ListViewTest(TestCase):
         self.assertContains(response, 'itemey 1')
         self.assertContains(response, 'itemey 2')
 
-class ItemModelTest(TestCase):
+class ListAndItemModelsTest(TestCase):
 
     def test_save_and_retrieve_items(self):
+        list_ = List()
+        list_.save()
         item1 = Item()
         item1.text = 'The first (ever) list item'
+        item1.list = list_
         item1.save()
         
         item2 = Item()
         item2.text = 'Item the 2nd'
+        item2.list = list_
         item2.save()
 
-        saved = Item.objects.all()
-        self.assertEqual(saved.count(), 2)
+        savedL = List.objects.first()
+        self.assertEqual(savedL, list_)
 
-        first_item = saved[0]
-        second_item = saved[1]
+        savedI = Item.objects.all()
+        self.assertEqual(savedI.count(), 2)
+
+        first_item = savedI[0]
+        second_item = savedI[1]
         self.assertEqual(first_item.text, item1.text)
+        self.assertEqual(first_item.list, list_)
         self.assertEqual(second_item.text, item2.text)
+        self.assertEqual(second_item.list, list_)
 
 class NewListTest(TestCase):