a tiny mvc framework for php using php-activerecord
1<?php
2
3require(__DIR__ . "/../lib/halfmoon.php");
4
5class RawTest extends PHPUnit_Framework_TestCase {
6 public function testRaw() {
7 $str = "<b>this is some text</b>";
8
9 $this->assertEquals("<b>this is some text</b>",
10 h($str));
11
12 $this->assertEquals("<b>this is some text</b>", (string)raw($str));
13 }
14}
15
16?>