Skip to content

Commit 2e6bd1c

Browse files
committed
add test script
1 parent e07da86 commit 2e6bd1c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

setup_test.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
try:
2+
import pyr3
3+
r = pyr3.R3Tree()
4+
print r
5+
print dir(r)
6+
r.insert_path(path="/bar", data='4')
7+
r.insert_path(path="/zoo", data='5')
8+
r.insert_path(path="/foo/bar", data='123')
9+
r.compile()
10+
except:
11+
import os
12+
# os.remove('pyr3.so')
13+
raise

0 commit comments

Comments
 (0)