I want to create a backend for sending SMS/Text
like the EmailBackEnd
I can accomplish the task of sending SMS just fine but the trouble is testing.
I can test how many email's are sent during the tests using django.core.mail.outbox
I want to do something similar for SMS say sms.smsoutbox
so how would I go about writing something like this for Django.
I understand that email outbox
resides in the localmemory for the duration of a single test so what I may be asking is that how do you put something in localmemory for the duration of a test.
Thanks already.