summaryrefslogtreecommitdiffstats
path: root/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal')
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/1.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/10.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/11.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/12.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/13.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/14.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/15.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/16.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/17.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/18.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/19.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/2.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/3.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/4.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/5.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/6.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/7.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/8.php16
-rwxr-xr-x3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/9.php16
19 files changed, 0 insertions, 304 deletions
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/1.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/1.php
deleted file mode 100755
index f55e62d8b..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/1.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_1 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = '../../../g';
- }
-
- function expected()
- {
- $this->expected = 'http://a/g';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/10.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/10.php
deleted file mode 100755
index 668cda63c..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/10.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_10 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = './g/.';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/g/';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/11.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/11.php
deleted file mode 100755
index eda10a60b..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/11.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_11 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'g/./h';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/g/h';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/12.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/12.php
deleted file mode 100755
index b66d71f60..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/12.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_12 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'g/../h';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/h';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/13.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/13.php
deleted file mode 100755
index 06b5e326c..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/13.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_13 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'g;x=1/./y';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/g;x=1/y';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/14.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/14.php
deleted file mode 100755
index 4a40af5ad..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/14.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_14 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'g;x=1/../y';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/y';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/15.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/15.php
deleted file mode 100755
index bef790e70..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/15.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_15 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'g?y/./x';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/g?y/./x';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/16.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/16.php
deleted file mode 100755
index 932cda4b5..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/16.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_16 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'g?y/../x';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/g?y/../x';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/17.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/17.php
deleted file mode 100755
index 8d626b68f..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/17.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_17 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'g#s/./x';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/g#s/./x';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/18.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/18.php
deleted file mode 100755
index 7a53018cf..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/18.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_18 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'g#s/../x';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/g#s/../x';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/19.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/19.php
deleted file mode 100755
index 289c1abc2..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/19.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_19 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'http:g';
- }
-
- function expected()
- {
- $this->expected = 'http:g';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/2.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/2.php
deleted file mode 100755
index 9a0534554..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/2.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_2 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = '../../../../g';
- }
-
- function expected()
- {
- $this->expected = 'http://a/g';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/3.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/3.php
deleted file mode 100755
index f96f5468f..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/3.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_3 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = '/./g';
- }
-
- function expected()
- {
- $this->expected = 'http://a/g';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/4.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/4.php
deleted file mode 100755
index 64e359fe6..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/4.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_4 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = '/../g';
- }
-
- function expected()
- {
- $this->expected = 'http://a/g';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/5.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/5.php
deleted file mode 100755
index dfd8e42be..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/5.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_5 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'g.';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/g.';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/6.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/6.php
deleted file mode 100755
index 3125b0044..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/6.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_6 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = '.g';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/.g';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/7.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/7.php
deleted file mode 100755
index 82f97b0ce..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/7.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_7 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = 'g..';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/g..';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/8.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/8.php
deleted file mode 100755
index 836ede076..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/8.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_8 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = '..g';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/c/..g';
- }
-}
-
-?> \ No newline at end of file
diff --git a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/9.php b/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/9.php
deleted file mode 100755
index 4917d4ceb..000000000
--- a/3rdparty/simplepie/tests/oldtests/absolutize/RFC3986.5.4/abnormal/9.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-class SimplePie_Absolutize_Test_RFC3986_Abnormal_9 extends SimplePie_Absolutize_Test_RFC3986
-{
- function data()
- {
- $this->data['relative'] = './../g';
- }
-
- function expected()
- {
- $this->expected = 'http://a/b/g';
- }
-}
-
-?> \ No newline at end of file