blob: 09ab329c611070c2c3b45120938b03536455a2fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
desc: Regression test for issue #1005.
tests:
- py: r.expr(str(r.table_list()))
ot: "r.table_list()"
- py: r.expr(str(r.table_create('a')))
ot: "r.table_create('a')"
- py: r.expr(str(r.table_drop('a')))
ot: "r.table_drop('a')"
- py: r.expr(str(r.db('a').table_list()))
ot: "r.db('a').table_list()"
- py: r.expr(str(r.db('a').table_create('a')))
ot: "r.db('a').table_create('a')"
- py: r.expr(str(r.db('a').table_drop('a')))
ot: "r.db('a').table_drop('a')"
|