summaryrefslogtreecommitdiff
path: root/pylint/test/test_self.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/test_self.py')
-rw-r--r--pylint/test/test_self.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/pylint/test/test_self.py b/pylint/test/test_self.py
index 69b739c..fae6403 100644
--- a/pylint/test/test_self.py
+++ b/pylint/test/test_self.py
@@ -288,7 +288,12 @@ class RunTC(unittest.TestCase):
actual_output = out.getvalue()
self.assertEqual(expected_output.strip(), actual_output.strip())
-
+ def test_import_itself_not_accounted_for_relative_imports(self):
+ expected = 'No config file found, using default configuration'
+ package = join(HERE, 'regrtest_data', 'dummy')
+ self._test_output([package, '--disable=locally-disabled', '-rn'],
+ expected_output=expected)
+
if __name__ == '__main__':