mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
11 lines
214 B
Python
11 lines
214 B
Python
"""Tests lazy and self destruictive objects."""
|
|
from xonsh.lazyasd import LazyObject
|
|
|
|
#
|
|
# LazyObject Tests
|
|
#
|
|
|
|
def test_lazyobject_getitem():
|
|
lo = LazyObject(lambda: {'x': 1}, {}, 'lo')
|
|
assert 1 == lo['x']
|
|
|