wagtail-longclaw/longclaw/longclawshipping/tests.py

13 wiersze
369 B
Python
Czysty Zwykły widok Historia

2017-03-30 08:03:30 +00:00
from longclaw.tests.utils import LongclawTestCase
class AddressTest(LongclawTestCase):
def test_create_address(self):
data = {
'name': 'Bob Testerson',
'line_1': 'Bobstreet',
'city': 'Bobsville',
'postcode': 'BOB22 2BO',
'country': 'Bobland'
}
self.post_test(data, 'longclaw_address_list')