Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit fd6e989

Browse files
Add the tests I forgot!
Test plan: `make check` Auditors: csilvers
1 parent a962fed commit fd6e989

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

testdata/symbol_alias_none_in.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from foo import some_function
2+
3+
4+
def do_thing():
5+
some_function(1)

testdata/symbol_alias_none_out.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import bar
2+
3+
4+
def do_thing():
5+
bar.new_name(1)

testdata/symbol_in.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from foo import some_function
2+
3+
4+
def do_thing():
5+
some_function(1)

testdata/symbol_out.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from bar import new_name
2+
3+
4+
def do_thing():
5+
new_name(1)

0 commit comments

Comments
 (0)