Show More
@@ -62,7 +62,7 b' def test_extract_code_ranges():' | |||||
62 |
|
62 | |||
63 |
|
63 | |||
64 | def test_extract_symbols(): |
|
64 | def test_extract_symbols(): | |
65 | source = """import foo\na = 10\ndef b():\n return 42\nclass A: pass\n""" |
|
65 | source = """import foo\na = 10\ndef b():\n return 42\n\n\nclass A: pass\n\n\n""" | |
66 | symbols_args = ["a", "b", "A", "A,b", "A,a", "z"] |
|
66 | symbols_args = ["a", "b", "A", "A,b", "A,a", "z"] | |
67 | expected = [[], |
|
67 | expected = [[], | |
68 | ["def b():\n return 42\n"], |
|
68 | ["def b():\n return 42\n"], |
General Comments 0
You need to be logged in to leave comments.
Login now