def test_find_in_list(self):
     assert_true(
         _find('yes', [True, 0, 'yes']),
     )
     assert_false(
         _find('no', [True, 0, 'yes']),
     )
 def test_find_string(self):
     assert_true(
         _find('word', 'word'),
     )
     assert_false(
         _find('drow', 'word')
     )
 def test_find_none(self):
     assert_true(
         _find(None, None),
     )
     assert_false(
         _find(None, 'None')
     )
 def test_find_boolean(self):
     assert_true(
         _find(True, True),
     )
     assert_false(
         _find(False, True)
     )
 def test_find_number(self):
     assert_true(
         _find(99, 99)
     )
     assert_false(
         _find(99, 99.99)
     )
 def test_doesnt_match_substring(self):
     assert_false(
         _find('word', 'word1234')
     )
Example #7
0
 def test_find_in_list(self):
     assert_true(_find('yes', [True, 0, 'yes']), )
     assert_false(_find('no', [True, 0, 'yes']), )
Example #8
0
 def test_find_boolean(self):
     assert_true(_find(True, True), )
     assert_false(_find(False, True))
Example #9
0
 def test_find_none(self):
     assert_true(_find(None, None), )
     assert_false(_find(None, 'None'))
Example #10
0
 def test_find_number(self):
     assert_true(_find(99, 99))
     assert_false(_find(99, 99.99))
Example #11
0
 def test_doesnt_match_substring(self):
     assert_false(_find('word', 'word1234'))
Example #12
0
 def test_find_string(self):
     assert_true(_find('word', 'word'), )
     assert_false(_find('drow', 'word'))