1import os
2
3import salt.modules.ini_manage
4
5
6def test_section_req():
7    """
8    Test the __repr__ in the _Section class
9    """
10    expected = "_Section(){}{{}}".format(os.linesep)
11    assert repr(salt.modules.ini_manage._Section("test")) == expected
12