diff options
author | drebs <drebs@riseup.net> | 2017-10-23 10:30:15 -0200 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2017-10-23 10:38:07 -0200 |
commit | d499358f0aae5e547de054b70786b726c5be65bb (patch) | |
tree | 70dfa828fd9f1c6b01060ebe994c4f070f5e7fb2 /tests/couch/test_command.py | |
parent | 33e30feb2d7cedb1aecbde2f339b40f72128a585 (diff) |
[doc] add script for copying doc to leap_se repo
Diffstat (limited to 'tests/couch/test_command.py')
-rw-r--r-- | tests/couch/test_command.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/couch/test_command.py b/tests/couch/test_command.py index 9fb2c153..52719065 100644 --- a/tests/couch/test_command.py +++ b/tests/couch/test_command.py @@ -10,7 +10,7 @@ class CommandBasedDBCreationTest(unittest.TestCase): def test_ensure_db_using_custom_command(self): state = couch_state.CouchServerState( - "url", create_cmd="/bin/echo", check_schema_versions=False) + "url", create_cmd="/bin/echo") mock_db = Mock() mock_db.replica_uid = 'replica_uid' state.open_database = Mock(return_value=mock_db) @@ -20,12 +20,11 @@ class CommandBasedDBCreationTest(unittest.TestCase): def test_raises_unauthorized_on_failure(self): state = couch_state.CouchServerState( - "url", create_cmd="inexistent", check_schema_versions=False) + "url", create_cmd="inexistent") self.assertRaises(u1db_errors.Unauthorized, state.ensure_database, "user-1337") def test_raises_unauthorized_by_default(self): - state = couch_state.CouchServerState("url", - check_schema_versions=False) + state = couch_state.CouchServerState("url") self.assertRaises(u1db_errors.Unauthorized, state.ensure_database, "user-1337") |