Django Testing Tutorial - How To Set Up Tests And Testing URLs #2

  Рет қаралды 103,383

The Dumbfounds

The Dumbfounds

Күн бұрын

Пікірлер: 53
@stealthwolf1
@stealthwolf1 5 жыл бұрын
By far the best tutorial I have found on this topic
@sergey5551
@sergey5551 3 жыл бұрын
Exactly what I was looking for. Thank you.
@wordpresswithusama7623
@wordpresswithusama7623 5 жыл бұрын
Got Best video about Unit Test in Django
@FernandoPosserPinheiro
@FernandoPosserPinheiro 3 жыл бұрын
Best explanation that I seeso far. Congrats!
@juanignaciodelossantos248
@juanignaciodelossantos248 2 жыл бұрын
Thank you bro. Really useful video
@nicosagrav
@nicosagrav Жыл бұрын
awesome! You saved me!
@fatemehyosefi1018
@fatemehyosefi1018 2 жыл бұрын
Thanks a lot😍😍
@ChaosArtist
@ChaosArtist 2 жыл бұрын
Very helpful. Thanks for this video.
@kareemashrafYT
@kareemashrafYT Жыл бұрын
what is this terminal , does it run in windows or linux ? , nice tutorial bro
@varunrawat5654
@varunrawat5654 3 жыл бұрын
very useful video. thanks and keep up the awesome work
@RajeshKumar-sy6jy
@RajeshKumar-sy6jy 2 жыл бұрын
Awesome content
@N63B44TÜ
@N63B44TÜ 5 жыл бұрын
thx for the video At 9:41 you have ran just one test because you did not change the name of second test function i think
@thedumbfounds767
@thedumbfounds767 5 жыл бұрын
Yep, happens too often when copy-pasting :D
@oskarciesla
@oskarciesla 2 жыл бұрын
Is there a way to test an int instead of slug in dynamic url?
@kenjohnsiosan9707
@kenjohnsiosan9707 6 жыл бұрын
nice vid sir...more on testing examples please. thanks
@thedumbfounds767
@thedumbfounds767 6 жыл бұрын
Thanks Ken, more examples are on their way!
@KevinTempelx
@KevinTempelx 4 жыл бұрын
Thanks!
@AmitTiwari-wf1xj
@AmitTiwari-wf1xj 2 жыл бұрын
Thank you. From where we get that 'list'. I am referring to => url = reverse('list')
@agsghagh7762
@agsghagh7762 Жыл бұрын
It's the name of url path
@heathergray4880
@heathergray4880 2 жыл бұрын
Can't this be tested in the views testing?
@salimbo4577
@salimbo4577 3 жыл бұрын
is there a difference between virtualenv and virtualenvwrapper ?
@cscorner9282
@cscorner9282 3 жыл бұрын
how would you test an insert function
@RuslanSkiraUkraine
@RuslanSkiraUkraine 3 жыл бұрын
Could you please make the video on how to work with the Docker+DjangoTests I stuck on this error. Got an error creating the test database: database "test_postgres" already exists. And I think It is because of lack of knowledge in this district.
@magnuslundstrm3719
@magnuslundstrm3719 3 жыл бұрын
Seems like the urls testing with reserve isn't working with urls that has params. Any ideas? Thanks for great content tho! :-)
@magnuslundstrm3719
@magnuslundstrm3719 3 жыл бұрын
okay you had already answerd that in another question. Just for people looking for it like me I will write it here, here is an example: url = reverse("ranks_app:change_customer_rank", args=[1]) ----- so the args=[1] will represent a customer id
@cortessensacionalistas7149
@cortessensacionalistas7149 4 жыл бұрын
Obrigado! (Thank You)!
@cecilmonk
@cecilmonk 5 жыл бұрын
Would be nice to have a link to the github in the description.
@Salah-hh4jq
@Salah-hh4jq 3 жыл бұрын
thanks bro for those topics would you recommend any readable tutorial for Django testing ?
@thedumbfounds767
@thedumbfounds767 3 жыл бұрын
A bit of a late reply, but what was most helpful to me was the book "Obey the testing goat". Very good intro to TDD as well!
@chrisoconnor6313
@chrisoconnor6313 4 жыл бұрын
Bro your a legend! Thanks so much
@ivanabregu1
@ivanabregu1 5 жыл бұрын
Thanks!!
@arpanbagui4563
@arpanbagui4563 3 жыл бұрын
Still after adding __init__.py & following the same file structure I got this message 'Ran 0 tests in 0.000s'. Can anyone help me out?
@krisskad
@krisskad 3 жыл бұрын
function name must start with the "test" word.
@arpanbagui4563
@arpanbagui4563 3 жыл бұрын
@@krisskad Thank you
@arush6778
@arush6778 3 жыл бұрын
in terminal : py manage.py test
@rohansingh132
@rohansingh132 4 жыл бұрын
Hi, How do I assert equal a function inside a class?
@mrfun9841
@mrfun9841 5 жыл бұрын
The best
@younesboukroun3060
@younesboukroun3060 4 жыл бұрын
Thank You for the videos, but it still a while not clear
@sriharsha825
@sriharsha825 6 жыл бұрын
what if there is app name? what should be in reverse(' ')
@thedumbfounds767
@thedumbfounds767 6 жыл бұрын
if there is a namespace, the syntax is: reverse(':'). So, if the namespace was 'budget' and the path name is list, then it would be: reverse('budget:list').
@sriharsha825
@sriharsha825 6 жыл бұрын
@@thedumbfounds767 thank you very much.But i have come across another error. How to write reverse if i have pass arguments for function? I tried response = self.client.get(reverse('customer:review'),categ=[1],product=[2]) for path('review///',views.reviewtext,name='review')
@thedumbfounds767
@thedumbfounds767 6 жыл бұрын
@@sriharsha825 reverse('foo:bar', args=[arg1, arg2]). You can also use kwargs I think.
@sriharsha825
@sriharsha825 6 жыл бұрын
@@thedumbfounds767 thanks man Keep pushing the new content
@thedumbfounds767
@thedumbfounds767 6 жыл бұрын
@@sriharsha825 new content is on the way :)
@anaduenas8381
@anaduenas8381 5 жыл бұрын
what if I have this kind of url: (url(r'^$', views.index, name='index')). What should I put on the reverse statement, I put reverse('index') but it says that there is not reverse match. :C
@AhmedGamal-kd9lh
@AhmedGamal-kd9lh 5 жыл бұрын
heeeelp !!! @The Dumbfounds
@enes222
@enes222 3 жыл бұрын
Why you don't try to use 'path('', HomeView , name='home')' instead of unnecessarily RE?
@RandalSitra
@RandalSitra 4 жыл бұрын
check the repository why there is no requirements.txt file? github.com/TheDumbfounds/budget-application-tutorial
@himanshuparashar5883
@himanshuparashar5883 3 жыл бұрын
aadrika ki kitni gandi soch hain
@parry9
@parry9 3 жыл бұрын
Bohot gandi soch sach me Aaj kal ke baccho ko kya ho gaya g
@rezakhalafi528
@rezakhalafi528 2 жыл бұрын
Exactly what I was looking for. Thank you.
Django Testing Tutorial - Testing Views #3
16:28
The Dumbfounds
Рет қаралды 81 М.
How To Write Unit Tests For Existing Python Code // Part 1 of 2
25:07
$1 vs $500,000 Plane Ticket!
12:20
MrBeast
Рет қаралды 122 МЛН
«Жат бауыр» телехикаясы І 30 - бөлім | Соңғы бөлім
52:59
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 340 М.
Vampire SUCKS Human Energy 🧛🏻‍♂️🪫 (ft. @StevenHe )
0:34
Alan Chikin Chow
Рет қаралды 138 МЛН
Вопрос Ребром - Джиган
43:52
Gazgolder
Рет қаралды 3,8 МЛН
Learn the Basics of Django Signals
22:37
Matt Freire
Рет қаралды 50 М.
Testing in Django Tutorial #8 - Testing Views (part 1)
11:06
Net Ninja
Рет қаралды 1,3 М.
Django and htmx Tutorial: Easier Web Development
1:05:52
PyCharm, a JetBrains IDE
Рет қаралды 31 М.
Pytest | Django | Gentle Introduction, Setup and Start Testing
19:13
Testing in Django Tutorial #14 - Test Settings
13:04
Net Ninja
Рет қаралды 1,1 М.
Python Django Pages, URLs & Slugs
20:55
Dave Gray
Рет қаралды 11 М.
Testing a Django Model | Django Project | djblogger | 17
30:28
Very Academy
Рет қаралды 14 М.
Django Testing Tutorial - What Is Testing? #1
4:35
The Dumbfounds
Рет қаралды 99 М.
$1 vs $500,000 Plane Ticket!
12:20
MrBeast
Рет қаралды 122 МЛН