mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 08:52:08 +01:00
9 lines
134 B
Python
9 lines
134 B
Python
import pytest
|
|
import phpy
|
|
import os
|
|
|
|
|
|
def test_set():
|
|
s = {1, 3, 5, 2023, 7, 9}
|
|
assert phpy.call('array_search', 2023, s) > 0
|