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 273890e commit 93d43c1Copy full SHA for 93d43c1
tests/phpbu/Backup/Restore/PlanTest.php
@@ -31,4 +31,15 @@ public function testAddCmd()
31
$this->assertCount(1, $plan->getDecompressionCommands());
32
$this->assertCount(1, $plan->getRestoreCommands());
33
}
34
+
35
+ /**
36
+ * Tests Plan::markSourceAsUnsupported
37
+ */
38
+ public function testUnsupported()
39
+ {
40
+ $plan = new Plan();
41
+ $plan->markSourceAsUnsupported();
42
43
+ $this->assertFalse($plan->isSourceSupported());
44
+ }
45
0 commit comments