from django.urls import reverse
import pytest


def test_dashboard_page_without_login(client) -> None:
    """ this test should redirect to login page """
    link = client.get(reverse("process:sound"))
    assert link.status_code == 302
