Skip to content

Commit

Permalink
Merge branch 'master' of github.com:botman/driver-hipchat
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot committed Aug 28, 2017
2 parents 65534c0 + 6e07da5 commit 2c505ae
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

BotMan driver to connect HipChat with [BotMan](https://github.com/botman/botman)

[![Latest Version on Packagist](https://img.shields.io/packagist/v/botman/driver-hipchat.svg?style=flat-square)](https://packagist.org/packages/botman/driver-hipchat)
[![Build Status](https://travis-ci.org/botman/driver-hipchat.svg?branch=master)](https://travis-ci.org/botman/driver-hipchat)
[![codecov](https://codecov.io/gh/botman/driver-hipchat/branch/master/graph/badge.svg)](https://codecov.io/gh/botman/driver-hipchat)


## Contributing

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
Expand All @@ -13,4 +18,4 @@ If you discover a security vulnerability within BotMan, please send an e-mail to
## License

BotMan is free software distributed under the terms of the MIT license.


2 changes: 1 addition & 1 deletion stubs/hipchat.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
*/
'urls' => env('HIPCHAT_URLS'),

];
];
6 changes: 3 additions & 3 deletions tests/HipChatDriverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,15 @@ public function it_is_configured()
$driver = new HipChatDriver($request, [
'hipchat' => [
'urls' => ['1', '2'],
]
],
], $htmlInterface);

$this->assertTrue($driver->isConfigured());

$driver = new HipChatDriver($request, [
'hipchat' => [
'urls' => [],
]
],
], $htmlInterface);

$this->assertFalse($driver->isConfigured());
Expand All @@ -224,7 +224,7 @@ public function it_is_configured()
$driver = new HipChatDriver($request, [
'hipchat' => [
'urls' => [''],
]
],
], $htmlInterface);

$this->assertFalse($driver->isConfigured());
Expand Down

0 comments on commit 2c505ae

Please sign in to comment.