From: Antoine Musso Date: Mon, 25 Oct 2010 16:28:15 +0000 (+0000) Subject: Follow up r75361 : removing a work in progress test case X-Git-Tag: 1.31.0-rc.0~34321 X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28?a=commitdiff_plain;h=5eeae073df5989848db035a6fae78b9e7bda8349;p=lhc%2Fweb%2Fwiklou.git Follow up r75361 : removing a work in progress test case --- diff --git a/maintenance/tests/phpunit/includes/IPTest.php b/maintenance/tests/phpunit/includes/IPTest.php index 181379c1f0..2336086f3c 100644 --- a/maintenance/tests/phpunit/includes/IPTest.php +++ b/maintenance/tests/phpunit/includes/IPTest.php @@ -140,14 +140,4 @@ class IPTest extends PHPUnit_Framework_TestCase { $this->assertNet( '10.128.0.0' , '10.135.0.0/9' ); $this->assertNet( '134.0.0.0' , '134.0.5.1/8' ); } - - function testIPv6SpecialRanges() { - $this->assertTrue( IPv6::isULA( 'fdc1:9d57:401e::' ) ); - $this->assertTrue( IPv6::isULA( 'FDC1:9D57:401E::' ) ); - $this->assertTrue( IPv6::isULA( 'fc::' ) ); - $this->assertTrue( IPv6::isULA( 'fdff:ffff:ffff::' ) ); - - $this->assertFalse( IPv6::isULA( '2001:0DB8::A:1::' ) ); - $this->assertFalse( IPv6::isULA( '::1' ) ); - } }