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

Commit c994243

Browse files
Add a skipped test for #20
This is mostly just a placeholder/reproduction for #20; it's a case we currently don't handle because it doesn't appear in KA code. Test plan: `make check` Auditors: csilvers
1 parent 9d8f0e9 commit c994243

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tests/test_slicker.py

+14
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,20 @@ def test_symbol_alias_none(self):
9999
'symbol_alias_none',
100100
'foo.some_function', 'bar.new_name', import_alias='NONE')
101101

102+
@unittest.skip("We should do a from import, see #22.")
103+
def test_symbol_import_moving_file(self):
104+
self.create_module('foo')
105+
self.run_test(
106+
'symbol',
107+
'foo', 'bar')
108+
109+
@unittest.skip("Known issue, see #20.")
110+
def test_symbol_import_moving_file_alias_none(self):
111+
self.create_module('foo')
112+
self.run_test(
113+
'symbol_alias_none',
114+
'foo', 'bar', import_alias='NONE')
115+
102116
def test_whole_file(self):
103117
self.create_module('foo')
104118
self.run_test(

0 commit comments

Comments
 (0)