Differential D21511 Diff 51201 src/applications/repository/engine/__tests__/PhabricatorWorkingCopyDiscoveryTestCase.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/repository/engine/__tests__/PhabricatorWorkingCopyDiscoveryTestCase.php
| <?php | <?php | ||||
| final class PhabricatorWorkingCopyDiscoveryTestCase | final class PhabricatorWorkingCopyDiscoveryTestCase | ||||
| extends PhabricatorWorkingCopyTestCase { | extends PhabricatorWorkingCopyTestCase { | ||||
| public function testSubversionCommitDiscovery() { | public function testSubversionCommitDiscovery() { | ||||
| $this->requireBinaryForTest('svn'); | |||||
| $refs = $this->discoverRefs('ST'); | $refs = $this->discoverRefs('ST'); | ||||
| $this->assertEqual( | $this->assertEqual( | ||||
| array( | array( | ||||
| 1368319433, | 1368319433, | ||||
| 1368319448, | 1368319448, | ||||
| ), | ), | ||||
| mpull($refs, 'getEpoch'), | mpull($refs, 'getEpoch'), | ||||
| pht('Commit Epochs')); | pht('Commit Epochs')); | ||||
| ▲ Show 20 Lines • Show All 41 Lines • Show Last 20 Lines | |||||