xonsh/tests/test_inspectors.py

11 lines
244 B
Python
Raw Normal View History

2016-02-06 00:05:00 -05:00
# -*- 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)