mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-11-16 07:15:24 +01:00
16 lines
437 B
Python
16 lines
437 B
Python
from minecraft.exceptions import YggdrasilError
|
|
|
|
import unittest
|
|
|
|
|
|
class RaiseYggdrasilError(unittest.TestCase):
|
|
def test_raise_yggdrasil_error(self):
|
|
with self.assertRaises(YggdrasilError):
|
|
raise YggdrasilError
|
|
|
|
def test_raise_yggdrasil_error_message(self):
|
|
with self.assertRaises(YggdrasilError) as e:
|
|
raise YggdrasilError("Error!")
|
|
|
|
self.assertEqual(str(e.exception), "Error!")
|