Pantheon\Terminus\UnitTests\Commands\Backup\ListCommandTest::testListBackups PHP Method

testListBackups() public method

Tests the backup:list command without any elements
public testListBackups ( )
    public function testListBackups()
    {
        $this->backups->expects($this->once())->method('getFinishedBackups')->willReturn([$this->backup]);
        $this->command->listBackups('mysite.dev');
    }