Skip to content

Commit 2a2578e

Browse files
committed
fix composer
1 parent 394a989 commit 2a2578e

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"phpunit/phpunit-selenium": ">=1.4.1",
2525
"brianium/paratest": ">=0.12.1",
2626
"appium/php-client": ">=0.1.0"
27-
}
27+
},
2828
"autoload": {
2929
"psr-0": {"TestingBot": "src/"}
3030
},

tests/test.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
require './../src/TestingBot/TestingBotAPI.php';
4+
5+
$key = '';
6+
$secret = '';
7+
8+
$api = new TestingBot\TestingBotAPI($key, $secret);
9+
var_dump($api->getJob('{session}', array('skip_fields' => 'logs')));

0 commit comments

Comments
 (0)