Skip to content

Commit

Permalink
Merge pull request #134 from helios-ag/style_ci
Browse files Browse the repository at this point in the history
Style ci
  • Loading branch information
helios-ag committed Dec 16, 2015
2 parents 2d7fe5d + 095334f commit 59e49c6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -20,9 +20,9 @@ A lightweight lexical string parser for BBCode styled markup.

### Code Quality Assurance ###

| SLInsight | Travis CI | Gitter | Coverage |
| ----------|-----------|---------|----------|
|[![SensioLabsInsight](https://insight.sensiolabs.com/projects/f355c58b-f9b6-482c-8d2d-d1bc8791c9e5/big.png)](https://insight.sensiolabs.com/projects/f355c58b-f9b6-482c-8d2d-d1bc8791c9e5) |[![Build Status](https://travis-ci.org/helios-ag/FMBbCodeBundle.png?branch=master)](https://travis-ci.org/helios-ag/FMBbCodeBundle)|[![Join the chat at https://gitter.im/helios-ag/FMBbCodeBundle](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/helios-ag/FMBbCodeBundle?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)|[![Coverage Status](https://coveralls.io/repos/helios-ag/FMBbCodeBundle/badge.svg?branch=master&service=github)](https://coveralls.io/github/helios-ag/FMBbCodeBundle?branch=master)|
| SLInsight | Travis CI | Gitter | Coverage | StyleCI |
| ----------|-----------|---------|----------|---------|
|[![SensioLabsInsight](https://insight.sensiolabs.com/projects/f355c58b-f9b6-482c-8d2d-d1bc8791c9e5/big.png)](https://insight.sensiolabs.com/projects/f355c58b-f9b6-482c-8d2d-d1bc8791c9e5) |[![Build Status](https://travis-ci.org/helios-ag/FMBbCodeBundle.png?branch=master)](https://travis-ci.org/helios-ag/FMBbCodeBundle)|[![Join the chat at https://gitter.im/helios-ag/FMBbCodeBundle](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/helios-ag/FMBbCodeBundle?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)|[![Coverage Status](https://coveralls.io/repos/helios-ag/FMBbCodeBundle/badge.svg?branch=master&service=github)](https://coveralls.io/github/helios-ag/FMBbCodeBundle?branch=master)|[![StyleCI](https://styleci.io/repos/2714013/shield)](https://styleci.io/repos/2714013)|


| Deps Status | Version | Downloads |
Expand Down
18 changes: 9 additions & 9 deletions Tests/Templating/BbcodeExtensionTest.php
Expand Up @@ -46,8 +46,8 @@ public function testUrlFilter($value, $expected)
public function dataUrlTags()
{
return array(
array('[url]http://example.org[/url]','<a href="http://example.org">http://example.org</a>'),
array('[url="http://example.com"]Example[/url]','<a href="http://example.com">Example</a>'),
array('[url]http://example.org[/url]', '<a href="http://example.org">http://example.org</a>'),
array('[url="http://example.com"]Example[/url]', '<a href="http://example.com">Example</a>'),
);
}

Expand All @@ -65,8 +65,8 @@ public function testImgFilter($value, $expected)
public function dataImgTags()
{
return array(
array('[img]http://github.com/picture.jpg[/img]','<img src="http://github.com/picture.jpg" alt="" />'),
array('[img width="500"]http://github.com/picture.jpg[/img]','<img width="500" src="http://github.com/picture.jpg" alt="" />'),
array('[img]http://github.com/picture.jpg[/img]', '<img src="http://github.com/picture.jpg" alt="" />'),
array('[img width="500"]http://github.com/picture.jpg[/img]', '<img width="500" src="http://github.com/picture.jpg" alt="" />'),
);
}

Expand All @@ -84,7 +84,7 @@ public function testQuoteFilter($value, $expected)
public function dataQuoteTags()
{
return array(
array('[quote]text[/quote]','text'),
array('[quote]text[/quote]', 'text'),
);
}

Expand All @@ -102,8 +102,8 @@ public function testStrict($value, $expected)
public function dataStrict()
{
return array(
array('[url]http://example.org[/url]','<a href="http://example.org">http://example.org</a>'),
array('[url=http://example.com]Example[/url]','<a href="http://example.com">Example</a>'),
array('[url]http://example.org[/url]', '<a href="http://example.org">http://example.org</a>'),
array('[url=http://example.com]Example[/url]', '<a href="http://example.com">Example</a>'),
);
}

Expand Down Expand Up @@ -179,8 +179,8 @@ public function dataDefaultFilterSet()
array('[sub]subscript[/sub]', '<sub>subscript</sub>'),
array('[sup]superscript[/sup]', '<sup>superscript</sup>'),
array('[abbr="Object relational mapper"]ORM[/abbr]', '<abbr title="Object relational mapper">ORM</abbr>'),
array('[url]http://example.org[/url]','<a href="http://example.org">http://example.org</a>'),
array('[url="http://example.com"]Example[/url]','<a href="http://example.com">Example</a>'),
array('[url]http://example.org[/url]', '<a href="http://example.org">http://example.org</a>'),
array('[url="http://example.com"]Example[/url]', '<a href="http://example.com">Example</a>'),
array('[email]email@domain.com[/email]', '<a href="mailto:&#101;&#109;&#97;&#105;&#108;&#64;&#100;&#111;&#109;&#97;&#105;&#110;&#46;&#99;&#111;&#109;">&#101;&#109;&#97;&#105;&#108;&#64;&#100;&#111;&#109;&#97;&#105;&#110;&#46;&#99;&#111;&#109;</a>'),
);
}
Expand Down

0 comments on commit 59e49c6

Please sign in to comment.