コード例 #1
0
ファイル: test_utils.py プロジェクト: brickgao/specchio
 def test_get_re_with_head_slash(self, _fnmatch):
     result = get_re_from_single_line("./too_young.py")
     self.assertEqual(result[0], 3)
     _fnmatch.translate.assert_called_once_with("too_young.py")
コード例 #2
0
ファイル: test_utils.py プロジェクト: brickgao/specchio
 def test_get_re_with_double_asterisk(self, _fnmatch):
     result = get_re_from_single_line("young/**/simple/**/naive")
     self.assertEqual(result[0], 3)
     _fnmatch.translate.assert_called_once_with("young/*/simple/*/naive")
コード例 #3
0
ファイル: test_utils.py プロジェクト: brickgao/specchio
 def test_get_re_with_space(self, _fnmatch):
     result = get_re_from_single_line("too\\ young.py")
     self.assertEqual(result[0], 3)
     _fnmatch.translate.assert_called_once_with("too young.py")
コード例 #4
0
ファイル: test_utils.py プロジェクト: brickgao/specchio
 def test_get_re_from_simple_line(self, _fnmatch):
     result = get_re_from_single_line("excited/")
     self.assertEqual(result[0], 3)
     _fnmatch.translate.assert_called_once_with("excited/*")
コード例 #5
0
ファイル: test_utils.py プロジェクト: brickgao/specchio
 def test_get_re_with_negate_pattern(self, _fnmatch):
     result = get_re_from_single_line("!too_simple.py")
     self.assertEqual(result[0], 2)
     _fnmatch.translate.assert_called_once_with("too_simple.py")
コード例 #6
0
ファイル: test_utils.py プロジェクト: brickgao/specchio
 def test_get_re_from_comment_line(self, _fnmatch):
     result = get_re_from_single_line("# too simple")
     self.assertEqual(result, (0, None))
     self.assertEqual(_fnmatch.translate.call_count, 0)
コード例 #7
0
ファイル: test_utils.py プロジェクト: brickgao/specchio
 def test_get_re_from_hash_line(self, _fnmatch):
     result = get_re_from_single_line("\\#2A00BF")
     self.assertEqual(result, (1, "2A00BF"))
     self.assertEqual(_fnmatch.translate.call_count, 0)
コード例 #8
0
ファイル: test_utils.py プロジェクト: delijati/specchio
 def test_get_re_with_head_slash(self, _fnmatch):
     result = get_re_from_single_line("./too_young.py")
     self.assertEqual(result[0], 3)
     _fnmatch.translate.assert_called_once_with("too_young.py")
コード例 #9
0
ファイル: test_utils.py プロジェクト: brickgao/specchio
 def test_get_re_from_blank_line(self, _fnmatch):
     result = get_re_from_single_line(" ")
     self.assertEqual(result, (0, None))
     self.assertEqual(_fnmatch.translate.call_count, 0)
コード例 #10
0
ファイル: test_utils.py プロジェクト: delijati/specchio
 def test_get_re_with_double_asterisk(self, _fnmatch):
     result = get_re_from_single_line("young/**/simple/**/naive")
     self.assertEqual(result[0], 3)
     _fnmatch.translate.assert_called_once_with("young/*/simple/*/naive")
コード例 #11
0
ファイル: test_utils.py プロジェクト: delijati/specchio
 def test_get_re_with_space(self, _fnmatch):
     result = get_re_from_single_line("too\\ young.py")
     self.assertEqual(result[0], 3)
     _fnmatch.translate.assert_called_once_with("too young.py")
コード例 #12
0
ファイル: test_utils.py プロジェクト: delijati/specchio
 def test_get_re_with_negate_pattern(self, _fnmatch):
     result = get_re_from_single_line("!too_simple.py")
     self.assertEqual(result[0], 2)
     _fnmatch.translate.assert_called_once_with("too_simple.py")
コード例 #13
0
ファイル: test_utils.py プロジェクト: delijati/specchio
 def test_get_re_from_simple_line(self, _fnmatch):
     result = get_re_from_single_line("excited/")
     self.assertEqual(result[0], 3)
     _fnmatch.translate.assert_called_once_with("excited/*")
コード例 #14
0
ファイル: test_utils.py プロジェクト: delijati/specchio
 def test_get_re_from_hash_line(self, _fnmatch):
     result = get_re_from_single_line("\\#2A00BF")
     self.assertEqual(result, (1, "2A00BF"))
     self.assertEqual(_fnmatch.translate.call_count, 0)
コード例 #15
0
ファイル: test_utils.py プロジェクト: delijati/specchio
 def test_get_re_from_comment_line(self, _fnmatch):
     result = get_re_from_single_line("# too simple")
     self.assertEqual(result, (0, None))
     self.assertEqual(_fnmatch.translate.call_count, 0)
コード例 #16
0
ファイル: test_utils.py プロジェクト: delijati/specchio
 def test_get_re_from_blank_line(self, _fnmatch):
     result = get_re_from_single_line(" ")
     self.assertEqual(result, (0, None))
     self.assertEqual(_fnmatch.translate.call_count, 0)