Пример #1
0
def test_quoted_not_string():
    assert _quoted('test', 500) == "'test', 500"
Пример #2
0
def test_quoted_single():
    assert _quoted('one arg') == "'one arg'"
Пример #3
0
def test_quoted_valid():
    assert _quoted('one', 'two') == "'one', 'two'"
Пример #4
0
def test_quoted_empty():
    assert _quoted() == ''