Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
synnefo
Commits
2e609c2c
Commit
2e609c2c
authored
Jul 01, 2014
by
Sofia Papagiannaki
Committed by
Chrysostomos Nanakos
Jul 08, 2014
Browse files
pithos: Skip test in case of sqlite backend module
parent
8970ad2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
snf-pithos-app/pithos/api/test/objects.py
View file @
2e609c2c
...
...
@@ -20,6 +20,7 @@ from binascii import hexlify
from
collections
import
defaultdict
from
urllib
import
quote
,
unquote
from
functools
import
partial
from
unittest
import
skipIf
from
pithos.api.test
import
(
PithosAPITest
,
pithos_settings
,
AssertMappingInvariant
,
AssertUUidInvariant
,
...
...
@@ -2095,6 +2096,9 @@ class ObjectPost(PithosAPITest):
content
=
r
.
content
self
.
assertEqual
(
content
,
d2
+
d3
[
-
1
])
@
skipIf
(
pithos_settings
.
BACKEND_DB_MODULE
==
\
'pithos.backends.lib.sqlite'
,
"This test is only meaningfull for SQLAlchemy backend"
)
def
test_update_invalid_permissions
(
self
):
url
=
join_urls
(
self
.
pithos_path
,
self
.
user
,
self
.
container
,
self
.
object
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment