Completed
Push — develop ( 86b58f...0a86d2 )
by Jace
03:19
created

tests/test_imports.py (3 issues)

Severity
1
"""Integration tests for the package namespace."""
2
# pylint: disable=missing-docstring,no-self-use,unused-variable
0 ignored issues
show
Locally disabling missing-docstring (C0111)
Loading history...
Locally disabling no-self-use (R0201)
Loading history...
Locally disabling unused-variable (W0612)
Loading history...
3
4
5
def test_top():
6
    import yorm
7
    assert yorm.bases
8
    assert yorm.types.Integer
9
    assert yorm.types.extended.Markdown
10
11
12
def test_from_top_constants():
13
    from yorm import UUID
14
15
16
def test_from_top_clases():
17
    from yorm import Mappable
18
    from yorm import Converter, Container
19
    from yorm import ModelMixin
20
21
22
def test_from_top_decorators():
23
    from yorm import sync
24
    from yorm import sync_instances
25
    from yorm import sync_object
26
    from yorm import attr
27
28
29
def test_from_top_utilities():
30
    from yorm import create
31
    from yorm import find
32
    from yorm import match
33
    from yorm import load
34
    from yorm import save
35
    from yorm import delete
36
37
38
def test_from_nested():
39
    from yorm.types import Integer
40
    from yorm.types.standard import String
41
    from yorm.types.extended import Markdown
42
    from yorm.types.containers import List
43