Skip to content

Commit

Permalink
Update unit tests
Browse files Browse the repository at this point in the history
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
  • Loading branch information
Tithugues committed Nov 3, 2019
1 parent 170714f commit e4dd3f0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions test/classes/Plugins/Transformations/TransformationPluginsTest.php
Expand Up @@ -944,6 +944,26 @@ public function transformationDataProvider()
),
'suffixMA_suffix'
),
array(
new Text_Plain_Longtoipv4(),
array(168496141),
'10.11.12.13'
),
array(
new Text_Plain_Longtoipv4(),
array('168496141'),
'10.11.12.13'
),
array(
new Text_Plain_Longtoipv4(),
array('my ip'),
'my ip'
),
array(
new Text_Plain_Longtoipv4(),
array('<my ip>'),
'&lt;my ip&gt;'
)
);

if (function_exists('imagecreatetruecolor')) {
Expand Down

0 comments on commit e4dd3f0

Please sign in to comment.