Skip to content

Commit

Permalink
#280 Skip accounts tests
Browse files Browse the repository at this point in the history
  • Loading branch information
viliambalaz committed Jun 10, 2020
1 parent b65d1e6 commit 81b5796
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions chcemvediet/apps/accounts/tests/test_forms.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# vim: expandtab
# -*- coding: utf-8 -*-
import unittest

from django.core.urlresolvers import reverse
from django.contrib.auth.models import User
from django.test import TestCase
Expand Down Expand Up @@ -28,6 +30,7 @@ def _create_account_signup_data(self, **kwargs):
return defaults


@unittest.skip(u'FIXME')
def test_get_signup_form(self):
response = self.client.get(reverse(u'account_signup'))
self.assertEqual(response.status_code, 200)
Expand All @@ -38,6 +41,7 @@ def test_get_signup_form(self):
self.assertInHTML(u'<input id="id_city" maxlength="30" name="city" placeholder="City" type="text">', response.content)
self.assertInHTML(u'<input id="id_zip" maxlength="5" name="zip" placeholder="Zip" type="text">', response.content)

@unittest.skip(u'FIXME')
def test_post_signup_form_with_valid_data_creates_user_and_his_profile(self):
data = self._create_account_signup_data(
first_name=u'John',
Expand Down

0 comments on commit 81b5796

Please sign in to comment.