Skip to content

Commit

Permalink
Added in circleci badge
Browse files Browse the repository at this point in the history
  • Loading branch information
mckayb committed Feb 24, 2019
1 parent 508d9d8 commit 76c97cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Phantasy-PHP [![Coverage Status](https://coveralls.io/repos/github/mckayb/phantasy-php/badge.svg?branch=master)](https://coveralls.io/github/mckayb/phantasy-php)
# Phantasy-PHP [![CircleCI](https://circleci.com/gh/mckayb/phantasy-php.svg?style=svg)](https://circleci.com/gh/mckayb/phantasy-php)[![Coverage Status](https://coveralls.io/repos/github/mckayb/phantasy-php/badge.svg?branch=master)](https://coveralls.io/github/mckayb/phantasy-php)
Curried versions of common PHP functions.

## Getting Started
Expand Down
3 changes: 1 addition & 2 deletions test/PHPFunctionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2908,10 +2908,9 @@ public function testMoneyFormat()
$num = 1234.56;
setlocale(LC_MONETARY, 'en_IN');
$this->assertEquals(money_format('%i', $num), \money_format('%i', $num));
$this->assertEquals(money_format('%i', $num), 'INR1,234.56');

$moneyFormat = money_format('%i');
$this->assertEquals($moneyFormat($num), 'INR1,234.56');
$this->assertEquals($moneyFormat($num), \money_format('%i', $num));
}

public function testNLLangInfo()
Expand Down

0 comments on commit 76c97cc

Please sign in to comment.