new-ara-api icon indicating copy to clipboard operation
new-ara-api copied to clipboard

HomeView 테스트가 없음

Open jungnoh opened this issue 3 years ago • 0 comments

As-Is) No logic tests

@pytest.mark.usefixtures('set_user_client')
class TestHome(TestCase, RequestSetting):
    def test_board_perm(self):
        r = self.http_request(self.user, 'get', 'home')
        assert r.status_code == 200

        r = self.http_request(None, 'get', 'home')
        assert r.status_code == 401

jungnoh avatar Oct 04 '21 10:10 jungnoh