xonsh/tests/test_inspectors.py
2016-06-22 17:49:54 -04:00

10 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)