Add test for case sensitive database
This commit is contained in:
@@ -49,6 +49,33 @@ class TestApi:
|
|||||||
assert not is_project_open(p)
|
assert not is_project_open(p)
|
||||||
|
|
||||||
|
|
||||||
|
def test_project_name(self):
|
||||||
|
p = 'test_PROJECT_name'
|
||||||
|
|
||||||
|
assert not have_project(p)
|
||||||
|
assert not is_project_open(p)
|
||||||
|
|
||||||
|
create_project(p)
|
||||||
|
|
||||||
|
assert have_project(p)
|
||||||
|
assert not is_project_open(p)
|
||||||
|
|
||||||
|
open_project(p)
|
||||||
|
|
||||||
|
assert have_project(p)
|
||||||
|
assert is_project_open(p)
|
||||||
|
|
||||||
|
close_project(p)
|
||||||
|
|
||||||
|
assert have_project(p)
|
||||||
|
assert not is_project_open(p)
|
||||||
|
|
||||||
|
delete_project(p)
|
||||||
|
|
||||||
|
assert not have_project(p)
|
||||||
|
assert not is_project_open(p)
|
||||||
|
|
||||||
|
|
||||||
# operation
|
# operation
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user