From 66afd70b756a0637da3537e96f6bf6ce0a2c46e9 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Wed, 26 Dec 2012 06:14:34 -0500
Subject: [PATCH] Framework'ize html2text class
---
tests/Framework/Html2text.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/HtmlToText.php b/tests/Framework/Html2text.php
similarity index 89%
rename from tests/HtmlToText.php
rename to tests/Framework/Html2text.php
index b90c61a..1d89638 100644
--- a/tests/HtmlToText.php
+++ b/tests/Framework/Html2text.php
@@ -1,11 +1,11 @@
<?php
/**
- * Test class to test html2text class
+ * Test class to test rcube_html2text class
*
* @package Tests
*/
-class HtmlToText extends PHPUnit_Framework_TestCase
+class rc_html2text extends PHPUnit_Framework_TestCase
{
function data_html2text()
@@ -49,7 +49,7 @@
*/
function test_html2text($title, $in, $out)
{
- $ht = new html2text(null, false, false);
+ $ht = new rcube_html2text(null, false, false);
$ht->set_html($in);
$res = $ht->get_text();
--
Gitblit v1.9.1