From c72c17f047aea4dadfb057a4891b64b4544d04c8 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Tue, 13 Feb 2018 17:15:46 +0000 Subject: [PATCH] remove premature test file --- .../tests/test_question_serialisation.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 opentech/apply/funds/tests/test_question_serialisation.py diff --git a/opentech/apply/funds/tests/test_question_serialisation.py b/opentech/apply/funds/tests/test_question_serialisation.py deleted file mode 100644 index a4affcbf4..000000000 --- a/opentech/apply/funds/tests/test_question_serialisation.py +++ /dev/null @@ -1,19 +0,0 @@ -from django.test import TestCase - -from .factories import ApplicationFormFactory, FundTypeFactory, RoundFactory, RoundFormFactory - - -class TestSerialisationQuestions(TestCase): - def setUp(self): - application_form = { - 'form_fields__0__email__': '', - 'form_fields__1__full_name__': '', - } - form = ApplicationFormFactory(**application_form) - fund = FundTypeFactory() - - self.round_page = RoundFactory(parent=fund) - RoundFormFactory(round=self.round_page, form=form) - - def test_convet_to_json(self): - print(self.round_page.serialise_form()) -- GitLab