Happy Christmas to y'all! Who has some goals/plans ready for the next year? P.S.: Check me out on twitter: twitter.com/gabrimarcan Will be posting something there once in a while.
@victoradukwu27196 жыл бұрын
Great videos. Really explanatory. Waiting for the video on testing templates.
@thedumbfounds7676 жыл бұрын
Thanks, Victor! We'll mostly be testing templates through the selenium tests.
@ProSimples4 жыл бұрын
I'd love if you have tests for standard models and many-to-many ones such as ForeignKey. There are almost no video about them.
@arekkarczewski82283 жыл бұрын
very good tut.
@karthik7688 Жыл бұрын
Though I did the same as mentioned. I'm getting Ran 0 test cases. What should I do?
@thetruereality24 жыл бұрын
Is there no video on how to do this on a windows machina?
@ehsanahmadi89762 жыл бұрын
Thanks👏
@about_python Жыл бұрын
it's the best test-tutorial. it's video>Russians video
@mattcarter64534 жыл бұрын
does anyone know why when I do this I get a django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet. Error?
@AdityaSingh-fk5vu5 жыл бұрын
The code is not there on your github. The repo doesn't have the test cases.
@saicharan45323 жыл бұрын
Hi,it is a nice explanation, could anyone help me how to test a model field which has unique= true in test.py file
@TariqAhmed_2 жыл бұрын
def test_get_absolute_url(self): response = Project.objects.create( name = "project 2", budget = 1000 ) self.assertEquals(response.slug, response.name.replace(" ", "-")) #Correct me if i am wrong..
@malikrumi12063 жыл бұрын
Testing for gau is 'overboard'? Seriously?
@xushnudbekjumayev Жыл бұрын
i write a little bit code for absolute_url function def test_absolute_slug(self): expected_url = f'/{self.project1.slug}' actual_url = self.project1.get_absolute_url() self.assertEquals(actual_url, expected_url, True) if something went wrong write comment