Skip to content

Commit

Permalink
Remove skipping behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
CloCkWeRX authored and yunosh committed Sep 1, 2017
1 parent ee8e07e commit 06b707b
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 32 deletions.
5 changes: 1 addition & 4 deletions tests/Cowiki_Render_Url.phpt
@@ -1,12 +1,9 @@
--TEST--
Text_Wiki_Cowiki_Render_Url
--SKIPIF--
<?php require_once dirname(__FILE__).'/skipif.php'; ?>
--FILE--
<?php
include 'config.php';
require_once 'Text/Wiki/Creole.php';
$w =& new Text_Wiki_Creole(array('Url'));
$w = new Text_Wiki_Creole(array('Url'));
var_dump($w->transform('
[[http://www.example.com/page|An example page]]
[[http://www.example.com/page]]
Expand Down
3 changes: 0 additions & 3 deletions tests/Creole_Parse_Url.phpt
@@ -1,10 +1,7 @@
--TEST--
Text_Wiki_Creole_Parse_Url
--SKIPIF--
<?php require_once dirname(__FILE__).'/skipif.php'; ?>
--FILE--
<?php
include 'config.php';
require_once 'Text/Wiki.php';
$t = Text_Wiki::factory('Creole', array('Url'));
$t->parse('
Expand Down
5 changes: 1 addition & 4 deletions tests/Creole_Render_Url.phpt
@@ -1,12 +1,9 @@
--TEST--
Text_Wiki_Creole_Render_Url
--SKIPIF--
<?php require_once dirname(__FILE__).'/skipif.php'; ?>
--FILE--
<?php
include 'config.php';
require_once 'Text/Wiki/Creole.php';
$w =& new Text_Wiki_Creole(array('Url'));
$w = new Text_Wiki_Creole(array('Url'));
var_dump($w->transform('
[[http://www.example.com/page|An example page]]
[[http://www.example.com/page]]
Expand Down
3 changes: 0 additions & 3 deletions tests/Default_Parse_BlockQuote.phpt
@@ -1,10 +1,7 @@
--TEST--
Text_Wiki_Default_Blockquote
--SKIPIF--
<?php require_once dirname(__FILE__).'/skipif.php'; ?>
--FILE--
<?php
include 'config.php';
require_once 'Text/Wiki.php';
$t = Text_Wiki::factory('Default', array('Blockquote'));
$t->parse('
Expand Down
5 changes: 1 addition & 4 deletions tests/Docbook_Render_Url.phpt
@@ -1,12 +1,9 @@
--TEST--
Text_Wiki_Docbook_Render_Url
--SKIPIF--
<?php require_once dirname(__FILE__).'/skipif.php'; ?>
--FILE--
<?php
include 'config.php';
require_once 'Text/Wiki/Creole.php';
$w =& new Text_Wiki_Creole(array('Url'));
$w = new Text_Wiki_Creole(array('Url'));
var_dump($w->transform('
[[http://www.example.com/page|An example page]]
[[http://www.example.com/page]]
Expand Down
5 changes: 1 addition & 4 deletions tests/Doku_Render_Url.phpt
@@ -1,12 +1,9 @@
--TEST--
Text_Wiki_Doku_Render_Url
--SKIPIF--
<?php require_once dirname(__FILE__).'/skipif.php'; ?>
--FILE--
<?php
include 'config.php';
require_once 'Text/Wiki/Creole.php';
$w =& new Text_Wiki_Creole(array('Url'));
$w = new Text_Wiki_Creole(array('Url'));
var_dump($w->transform('
[[http://www.example.com/page|An example page]]
[[http://www.example.com/page]]
Expand Down
5 changes: 1 addition & 4 deletions tests/Latex_Render_Url.phpt
@@ -1,12 +1,9 @@
--TEST--
Text_Wiki_Latex_Render_Url
--SKIPIF--
<?php require_once dirname(__FILE__).'/skipif.php'; ?>
--FILE--
<?php
include 'config.php';
require_once 'Text/Wiki/Creole.php';
$w =& new Text_Wiki_Creole(array('Url'));
$w = new Text_Wiki_Creole(array('Url'));
var_dump($w->transform('
[[http://www.example.com/page|An example page]]
[[http://www.example.com/page]]
Expand Down
3 changes: 0 additions & 3 deletions tests/Plain_Render_Url.phpt
@@ -1,10 +1,7 @@
--TEST--
Text_Wiki_Plain_Render_Url
--SKIPIF--
<?php require_once dirname(__FILE__).'/skipif.php'; ?>
--FILE--
<?php
include 'config.php';
require_once 'Text/Wiki/Creole.php';
$w =& new Text_Wiki_Creole(array('Url'));
var_dump($w->transform('
Expand Down
3 changes: 0 additions & 3 deletions tests/Xhtml_Render_Url.phpt
@@ -1,10 +1,7 @@
--TEST--
Text_Wiki_Xhtml_Render_Url
--SKIPIF--
<?php require_once dirname(__FILE__).'/skipif.php'; ?>
--FILE--
<?php
include 'config.php';
require_once 'Text/Wiki/Creole.php';
$w =& new Text_Wiki_Creole(array('Url'));
var_dump($w->transform('
Expand Down

0 comments on commit 06b707b

Please sign in to comment.