mirror of
https://github.com/YunoHost-Apps/django-fmd_ynh.git
synced 2024-09-03 18:26:27 +02:00
9 lines
284 B
Python
9 lines
284 B
Python
|
from unittest.case import TestCase
|
||
|
|
||
|
from django_yunohost_integration.test_utils import generate_basic_auth
|
||
|
|
||
|
|
||
|
class TestUtilsTestCase(TestCase):
|
||
|
def test_generate_basic_auth(self):
|
||
|
assert generate_basic_auth(username='test', password='test123') == 'basic dGVzdDp0ZXN0MTIz'
|