mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-05 17:00:58 +01:00
12 lines
214 B
Python
12 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']
|
||
|
|