def setUp(self): category = Category() category.name = "News" category.slug = "news" category.save() a = Article() a.title = "Test article 1" a.slug = "test-article-1" a.category = Category.objects.get(name="News") a.save() a.publish_now() h = TwitterHandle() h.name = "groundup_news" h.slug = "groundup_news" h.save() t = Tweet() t.article = a t.wait_time = 0 t.status = "scheduled" t.tweet_text = "Test tweet " + str(a.published) t.save() t.tag_accounts.add(h) t.save()
def setUpTestData(cls): cls.client = Client() category = Category() category.name = "News" category.slug = "news" category.save() a = Article() a.title = "Test article 1" a.slug = "test-article-1" a.category = Category.objects.get(name="News") a.save() a.publish_now() h = TwitterHandle() h.name = "groundup_news" h.slug = "groundup_news" h.save() t = Tweet() t.article = a t.wait_time = 0 t.status = "scheduled" t.tweet_text = "Test tweet " + str(a.published) t.save() t.tag_accounts.add(h) t.save()
def setUpTestData(cls): cls.client = Client() fund = Fund() fund.name = "Bertha|Reporters" fund.save() category = Category() category.name = "Video" category.slug = "video" category.save() category = Category() category.name = "News" category.slug = "news" category.save() author1 = Author() author1.first_names = "Joe" author1.last_name = "Bloggs" author1.email = "*****@*****.**" author1.freelancer = "f" author1.save() author2 = Author() author2.first_names = "Jane" author2.last_name = "Doe" author2.email = "*****@*****.**" author2.freelancer = "c" author2.save() author3 = Author() author3.first_names = "Lois" author3.last_name = "Lane" author3.email = "*****@*****.**" author3.freelancer = "n" author3.save() article1 = Article() article1.title = "Test commission 1" article1.slug = "test-commission-1" article1.category = Category.objects.get(name="News") article1.published = timezone.now() article1.author_01 = author1 article1.author_02 = author2 article1.author_03 = author3 article1.save() article2 = Article() article2.title = "Test commission 2" article2.slug = "test-commission-2" article2.category = Category.objects.get(name="News") article2.published = timezone.now() article2.author_01 = author1 article2.save() article3 = Article() article3.title = "Test commission 3" article3.slug = "test-commission-3" article3.category = Category.objects.get(name="News") article3.published = timezone.now() article3.author_02 = author2 article3.save() article4 = Article() article4.title = "Test commission 4" article4.slug = "test-commission-4" article4.category = Category.objects.get(name="News") article4.published = timezone.now() article4.author_01 = author1 article4.author_02 = author2 article4.save() article5 = Article() article5.title = "Test commission 5" article5.slug = "test-commission-5" article5.category = Category.objects.get(name="News") article5.published = timezone.now() article5.author_01 = author1 article5.author_02 = author2 article5.save() article6 = Article() article6.title = "Test commission 6" article6.slug = "test-commission-6" article6.category = Category.objects.get(name="News") article6.published = timezone.now() article6.author_01 = author1 article6.author_02 = author2 article6.save() article7 = Article() article7.title = "Test commission 7" article7.slug = "test-commission-7" article7.category = Category.objects.get(name="News") article7.published = timezone.now() article7.author_01 = author2 article7.author_02 = author1 article7.save() article8 = Article() article8.title = "Test commission 8" article8.slug = "test-commission-8" article8.category = Category.objects.get(name="News") article8.published = timezone.now() article8.author_01 = author2 article8.author_02 = author1 article8.save() article9 = Article() article9.title = "Test commission 9" article9.slug = "test-commission-9" article9.category = Category.objects.get(name="News") article9.published = timezone.now() article9.author_01 = author2 article9.author_02 = author1 article9.save() article10 = Article() article10.title = "Test commission 10" article10.slug = "test-commission-10" article10.category = Category.objects.get(name="News") article10.published = timezone.now() article10.author_01 = author2 article10.save() article20 = Article() article20.title = "Test commission 20" article20.slug = "test-commission-20" article20.category = Category.objects.get(name="Video") article20.published = timezone.now() article20.author_01 = author2 article20.save()
def setUpTestData(cls): cls.client = Client() topic = Topic() topic.name = "government" topic.slug = "government" topic.save() category = Category() category.name = "Feature" category.slug = "feature" category.save() category = Category() category.name = "Photo essay" category.slug = "photo-essay" category.save() category = Category() category.name = "Opinion" category.slug = "opinion" category.save() category = Category() category.name = "Photo" category.slug = "photo" category.save() category = Category() category.name = "News" category.slug = "news" category.save() a = Article() a.title = "Test article 1" a.body = "<p>The quick brown fox jumps over the lazy dog.</p>" a.slug = "test-article-1" a.category = Category.objects.get(name="News") a.external_primary_image = \ "http://www.w3schools.com/html/pic_mountain.jpg" a.save() a.publish_now() a = Article() a.title = "Test article 2" a.subtitle = "Dogs and things" a.body = "<p>How now brown cow.</p>" a.slug = "test-article-2" a.category = Category.objects.get(slug="opinion") a.save() a.publish_now() author = Author() author.first_names = "Joe" author.last_name = "Bloggs" author.email = "*****@*****.**" author.save() a.author_01 = author a.save()
def setUpTestData(cls): republisher = Republisher() republisher.name = "NYT" republisher.email_addresses = "[email protected],[email protected]" republisher.message = "Hi. Please republish this." republisher.save() topic = Topic() topic.name = "government" topic.slug = "government" topic.save() category = Category() category.name = "Feature" category.slug = "feature" category.save() category = Category() category.name = "Photo essay" category.slug = "photo-essay" category.save() category = Category() category.name = "Opinion" category.slug = "opinion" category.save() category = Category() category.name = "Photo" category.slug = "photo" category.save() category = Category() category.name = "News" category.slug = "news" category.save() article = Article() article.title = "Test article 1" article.body = "<p>The quick brown fox jumps over the lazy dog.</p>" article.slug = "test-article-1" article.category = Category.objects.get(name="News") article.external_primary_image = \ "http://www.w3schools.com/html/pic_mountain.jpg" article.save() article.publish_now() republisherArticle = RepublisherArticle() republisherArticle.article = article republisherArticle.republisher = republisher republisherArticle.save()
def setUpTestData(cls): cls.client = Client() fund = Fund() fund.name = "Bertha|Reporters" fund.save() category = Category() category.name = "News" category.slug = "news" category.save() author1 = Author() author1.first_names = "Joe" author1.last_name = "Bloggs" author1.email = "*****@*****.**" author1.freelancer = True author1.save() author2 = Author() author2.first_names = "Jane" author2.last_name = "Doe" author2.email = "*****@*****.**" author2.freelancer = True author2.save() author3 = Author() author3.first_names = "Lois" author3.last_name = "Lane" author3.email = "*****@*****.**" author3.freelancer = False author3.save() article1 = Article() article1.title = "Test commission 1" article1.slug = "test-commission-1" article1.category = Category.objects.get(name="News") article1.published = timezone.now() article1.author_01 = author1 article1.author_02 = author2 article1.author_03 = author3 article1.save() article2 = Article() article2.title = "Test commission 2" article2.slug = "test-commission-2" article2.category = Category.objects.get(name="News") article2.published = timezone.now() article2.author_01 = author1 article2.save() article3 = Article() article3.title = "Test commission 3" article3.slug = "test-commission-3" article3.category = Category.objects.get(name="News") article3.published = timezone.now() article3.author_01 = author1 article3.save() article4 = Article() article4.title = "Test commission 4" article4.slug = "test-commission-4" article4.category = Category.objects.get(name="News") article4.published = timezone.now() article4.author_01 = author1 article4.author_02 = author2 article4.save()
def setUp(self): fund = Fund() fund.name = "Bertha|Reporters" fund.save() category = Category() category.name = "News" category.slug = "news" category.save() author1 = Author() author1.first_names = "Joe" author1.last_name = "Bloggs" author1.email = "*****@*****.**" author1.freelancer = True author1.save() author2 = Author() author2.first_names = "Jane" author2.last_name = "Doe" author2.email = "*****@*****.**" author2.freelancer = True author2.save() author3 = Author() author3.first_names = "Lois" author3.last_name = "Lane" author3.email = "*****@*****.**" author3.freelancer = False author3.save() article1 = Article() article1.title = "Test commission 1" article1.slug = "test-commission-1" article1.category = Category.objects.get(name="News") article1.published = timezone.now() article1.author_01 = author1 article1.author_02 = author2 article1.author_03 = author3 article1.save() article2 = Article() article2.title = "Test commission 2" article2.slug = "test-commission-2" article2.category = Category.objects.get(name="News") article2.published = timezone.now() article2.author_01 = author1 article2.save() article3 = Article() article3.title = "Test commission 3" article3.slug = "test-commission-3" article3.category = Category.objects.get(name="News") article3.published = timezone.now() article3.author_01 = author1 article3.save() article4 = Article() article4.title = "Test commission 4" article4.slug = "test-commission-4" article4.category = Category.objects.get(name="News") article4.published = timezone.now() article4.author_01 = author1 article4.author_02 = author2 article4.save()
def setUp(self): topic = Topic() topic.name = "government" topic.slug = "government" topic.save() category = Category() category.name = "Feature" category.slug = "feature" category.save() category = Category() category.name = "Photo essay" category.slug = "photo-essay" category.save() category = Category() category.name = "Opinion" category.slug = "opinion" category.save() category = Category() category.name = "Photo" category.slug = "photo" category.save() category = Category() category.name = "News" category.slug = "news" category.save() a = Article() a.title = "Test article 1" a.slug = "test-article-1" a.category = Category.objects.get(name="News") a.external_primary_image = \ "http://www.w3schools.com/html/pic_mountain.jpg" a.save() a.publish_now() a = Article() a.title = "Test article 2" a.slug = "test-article-2" a.category = Category.objects.get(slug="opinion") a.save() a.publish_now()