Skip to content
Snippets Groups Projects
Commit c72c17f0 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

remove premature test file

parent e48d52d5
No related branches found
No related tags found
No related merge requests found
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())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment