Skip to content

Commit 37c197f

Browse files
committed
Use CircleCi to build and test
Adds a circle.yml file that calls phpunit and uses PHP 5.5.11 as the target version.
1 parent 96e4b68 commit 37c197f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

circle.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
test:
2+
override:
3+
- phpunit
4+
5+
machine:
6+
php:
7+
version: 5.5.11

tests/Intercom/IntercomBasicAuthClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function testAuthIsSet()
3636
function testGetServiceDescriptionFromFile()
3737
{
3838
$client = new IntercomBasicAuthClient($this->config);
39-
$sd = $client->getServiceDescriptionFromFile(__DIR__ . '/../../src/intercom/Service/config/intercom_v3.json');
39+
$sd = $client->getServiceDescriptionFromFile(__DIR__ . '/../../src/Intercom/Service/config/intercom_v3.json');
4040
$this->assertInstanceOf('Guzzle\Service\Description\ServiceDescription', $sd);
4141
}
4242

0 commit comments

Comments
 (0)