18 lines
339 B
Python
18 lines
339 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# ITerativ GmbH
|
|
# http://www.iterativ.ch/
|
|
#
|
|
# Copyright (c) 2020 ITerativ GmbH. All rights reserved.
|
|
#
|
|
# Created on 23.01.20
|
|
# @author: chrigu <christian.cueni@iterativ.ch>
|
|
import json
|
|
|
|
from django.test import TestCase, Client
|
|
from core.factories import UserFactory
|
|
|
|
|
|
class HepClientTestCases(TestCase):
|
|
pass
|