mirror of
https://github.com/YunoHost-Apps/pyinventory_ynh.git
synced 2024-09-03 20:16:09 +02:00
8 lines
267 B
Python
8 lines
267 B
Python
from unittest.case import TestCase
|
|
|
|
from django_ynh.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'
|