How to use test_post_follow method in Django Test Plus

Best Python code snippet using django-test-plus_python

test_views.py

Source:test_views.py Github

copy

Full Screen

...99 login_user.refresh_from_db()100 assert login_user.name == "Test user"101 assert login_user.check_password("testpass2")102class TestUserFollow:103 def test_post_follow(self, client, login_user):104 user = UserFactory()105 response = client.post(reverse("account:follow", args=[user.username]))106 assert response.status_code == http.HTTPStatus.OK107 assert user in login_user.follows.all()108 def test_post_follow_self(self, client, login_user):109 response = client.post(reverse("account:follow", args=[login_user.username]))110 assert response.status_code == http.HTTPStatus.NOT_FOUND111 def test_post_unfollow(self, client, login_user):112 user = UserFactory()113 login_user.follows.add(user)114 client.post(reverse("account:follow", args=[user.username]))...

Full Screen

Full Screen

tests.py

Source:tests.py Github

copy

Full Screen

...15 def test_post_search(self):16 self.client = Client()17 response = self.client.post('/friends/search/', {'user_id':'wl'})18 print json.loads(response.content)19 def test_post_follow(self):20 self.client = Client()21 response = self.client.post('/friends/follow/', {'friends_id':'fz', 'user_id':'dc'})22 print response.content23 def test_show_friends(self):24 self.client = Client()25 response = self.client.post('/friends/show/', {'user_id':'fz'})...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Django Test Plus automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful