Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function testVersionControlSeemUpdate() |
||
28 | { |
||
29 | $client = $this->getClientWithMockedPost('notify-version-control-seen-update.json'); |
||
30 | |||
31 | $client = new VersionControlClient($this->getConfig(), $client); |
||
32 | $entry = $client->markUpdateAsSeen('test', 689, 'no', 'newer_version'); |
||
33 | |||
34 | $this->assertInstanceOf(SeenUpdate::class, $entry); |
||
35 | } |
||
37 |