Skip to content

johnpaulett/django-with-asserts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-with-asserts - Test HTML with Context Managers

https://api.travis-ci.org/johnpaulett/django-with-asserts.png

Make your Django HTML tests more explicit and concise.

Turn this:

self.assertContains(
    resp,
    '<input id="id_email" type="text" name="email" maxlength="75" value="bob@example.com>',
    html=True
)

Into this:

with self.assertHTML(resp, 'input[name="email"]') as (elem,):
    self.assertEqual(elem.value, 'bob@example.com')

Links

About

Test Django HTML with Context Managers

Resources

Stars

Watchers

Forks

Packages

No packages published