Пример #1
0
 def test_is_string_string(self):
     s1 = 'string'
     assert apihelper.is_string(s1)
Пример #2
0
 def test_not_string(self):
     i1 = 10
     assert not apihelper.is_string(i1)
Пример #3
0
 def test_is_string_unicode(self):
     s1 = u'string'
     assert apihelper.is_string(s1)
Пример #4
0
def test_not_string():
    i1 = 10
    assert not apihelper.is_string(i1)
Пример #5
0
def test_is_string_string():
    s1 = 'string'
    assert apihelper.is_string(s1)
Пример #6
0
def test_is_string_unicode():
    s1 = u'string'
    assert apihelper.is_string(s1)
Пример #7
0
def test_is_string_string():
    s1 = "string"
    assert apihelper.is_string(s1)