add docstrings
This commit is contained in:
@@ -5,9 +5,14 @@ from bs4 import BeautifulSoup
|
||||
|
||||
@pytest.mark.django_db
|
||||
def test_view_should_display_right_len_list(sample_profile):
|
||||
"""
|
||||
test that html page displays the right amount of objects
|
||||
created by fixture
|
||||
"""
|
||||
c = Client()
|
||||
url = reverse('profiles_index')
|
||||
response = c.get(url)
|
||||
soup = BeautifulSoup(response.content, 'html.parser')
|
||||
li_tags = soup.find_all('li')
|
||||
assert len(li_tags) == 3
|
||||
assert len(li_tags) == 3
|
||||
|
||||
|
||||
Reference in New Issue
Block a user