def test_quoted_not_string():
    assert _quoted('test', 500) == "'test', 500"
def test_quoted_single():
    assert _quoted('one arg') == "'one arg'"
def test_quoted_valid():
    assert _quoted('one', 'two') == "'one', 'two'"
def test_quoted_empty():
    assert _quoted() == ''