diff options
author | Damien George <damien@micropython.org> | 2024-03-18 22:41:28 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-03-19 10:08:32 +1100 |
commit | c9016b4979a718c7a66b2145e00fbdabfa2dc509 (patch) | |
tree | 078ef342c6b40b2db05dd83e2569cc4126d6ed49 /tests/basics/deque_micropython.py.exp | |
parent | bf18ddd98930787c22b561884e0b3807b47d412b (diff) |
tests/basics: Split MicroPython-specific deque tests to separate file.
So that the MicroPython-specific behaviour can be isolated, and the CPython
compatible test don't need a .exp file.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/basics/deque_micropython.py.exp')
-rw-r--r-- | tests/basics/deque_micropython.py.exp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/basics/deque_micropython.py.exp b/tests/basics/deque_micropython.py.exp new file mode 100644 index 000000000..f1ff7b77a --- /dev/null +++ b/tests/basics/deque_micropython.py.exp @@ -0,0 +1,17 @@ +TypeError +IndexError +IndexError +TypeError +None +1 +2 +3 4 +IndexError('empty',) +IndexError('empty',) +2 +IndexError('full',) +IndexError('full',) +2 +5 6 +0 +IndexError('empty',) |