We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa7f070 commit 5da23cdCopy full SHA for 5da23cd
tests/integration/test_dump.py
@@ -0,0 +1,11 @@
1
+from subprocess import run
2
+
3
+import pytest
4
5
+from tests.helpers import IntegrationTestCaseBase
6
7
8
+@pytest.mark.integration
9
+class TestDump(IntegrationTestCaseBase):
10
+ def test_dump(self):
11
+ run(["rethinkdb-dump", "-c", self.rethinkdb_host])
tests/integration/test_restore.py
+class TestRestore(IntegrationTestCaseBase):
+ def test_restore(self):
+ run(["rethinkdb-restore", "-c", self.rethinkdb_host])
0 commit comments