File size: 226 Bytes
079c32c
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import pytest

from ...config import GLOBAL_HOST, LOCAL_HOST


@pytest.mark.unittest
class TestInteractionConfig:

    def test_base_host(self):
        assert GLOBAL_HOST == '0.0.0.0'
        assert LOCAL_HOST == '127.0.0.1'