mirror of https://github.com/astral-sh/ruff
37 lines
829 B
Python
37 lines
829 B
Python
"""
|
|
Should emit:
|
|
B017 - on lines 20
|
|
"""
|
|
import asyncio
|
|
import unittest
|
|
|
|
CONSTANT = True
|
|
|
|
|
|
def something_else() -> None:
|
|
for i in (1, 2, 3):
|
|
print(i)
|
|
|
|
|
|
class Foo:
|
|
pass
|
|
|
|
|
|
class Foobar(unittest.TestCase):
|
|
def evil_raises(self) -> None:
|
|
with self.assertRaises(Exception):
|
|
raise Exception("Evil I say!")
|
|
|
|
def context_manager_raises(self) -> None:
|
|
with self.assertRaises(Exception) as ex:
|
|
raise Exception("Context manager is good")
|
|
self.assertEqual("Context manager is good", str(ex.exception))
|
|
|
|
def regex_raises(self) -> None:
|
|
with self.assertRaisesRegex(Exception, "Regex is good"):
|
|
raise Exception("Regex is good")
|
|
|
|
def raises_with_absolute_reference(self):
|
|
with self.assertRaises(asyncio.CancelledError):
|
|
Foo()
|