コード例 #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() == ''