diff --git a/tests/analysis/call_graph/expected.txt b/tests/analysis/call_graph/expected.txt deleted file mode 100644 index 5ec2134..0000000 --- a/tests/analysis/call_graph/expected.txt +++ /dev/null @@ -1,14 +0,0 @@ -foo -bar -{ - "analysis.call_graph.program": [ - "analysis.call_graph.program.foo" - ], - "analysis.call_graph.program.foo": [ - "builtins.print", - "analysis.call_graph.program.bar" - ], - "analysis.call_graph.program.bar": [ - "builtins.print" - ] -} \ No newline at end of file diff --git a/tests/analysis/call_graph/analysis.py b/tests/test_analysis/call_graph/analysis.py similarity index 100% rename from tests/analysis/call_graph/analysis.py rename to tests/test_analysis/call_graph/analysis.py diff --git a/tests/test_analysis/call_graph/expected.txt b/tests/test_analysis/call_graph/expected.txt new file mode 100644 index 0000000..c5bfe5a --- /dev/null +++ b/tests/test_analysis/call_graph/expected.txt @@ -0,0 +1,14 @@ +foo +bar +{ + "test_analysis.call_graph.program": [ + "test_analysis.call_graph.program.foo" + ], + "test_analysis.call_graph.program.foo": [ + "builtins.print", + "test_analysis.call_graph.program.bar" + ], + "test_analysis.call_graph.program.bar": [ + "builtins.print" + ] +} \ No newline at end of file diff --git a/tests/analysis/call_graph/program.py b/tests/test_analysis/call_graph/program.py similarity index 100% rename from tests/analysis/call_graph/program.py rename to tests/test_analysis/call_graph/program.py diff --git a/tests/analysis/multiple_analyses/analysis.py b/tests/test_analysis/multiple_analyses/analysis.py similarity index 100% rename from tests/analysis/multiple_analyses/analysis.py rename to tests/test_analysis/multiple_analyses/analysis.py diff --git a/tests/analysis/multiple_analyses/expected.txt b/tests/test_analysis/multiple_analyses/expected.txt similarity index 100% rename from tests/analysis/multiple_analyses/expected.txt rename to tests/test_analysis/multiple_analyses/expected.txt diff --git a/tests/analysis/multiple_analyses/program.py b/tests/test_analysis/multiple_analyses/program.py similarity index 100% rename from tests/analysis/multiple_analyses/program.py rename to tests/test_analysis/multiple_analyses/program.py