mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-05 17:00:58 +01:00
11 lines
244 B
Python
11 lines
244 B
Python
![]() |
# -*- coding: utf-8 -*-
|
||
|
"""Testing inspectors"""
|
||
|
import inspect
|
||
|
from xonsh.inspectors import getouterframes
|
||
|
|
||
|
|
||
|
def test_getouterframes():
|
||
|
"""Just test that this works."""
|
||
|
curr = inspect.currentframe()
|
||
|
getouterframes(curr, context=0)
|