than the text
\ No newline at end of file
diff --git a/tests/unit/cms/classes/ContentTest.php b/tests/unit/cms/classes/ContentTest.php
new file mode 100644
index 000000000..05eac5e82
--- /dev/null
+++ b/tests/unit/cms/classes/ContentTest.php
@@ -0,0 +1,36 @@
+assertEquals('Be brave, be **bold**, live *italic*', $content->markup);
+ $this->assertEquals('Be brave, be bold, live italic
', $content->parsedMarkup);
+ }
+
+ public function testTextContent()
+ {
+ $theme = Theme::load('test');
+ $content = Content::load($theme, 'text-content.txt');
+
+ $this->assertEquals('Pen is than the sword, HTML is than the text', $content->markup);
+ $this->assertEquals('Pen is <mightier> than the sword, HTML is <richer> than the text', $content->parsedMarkup);
+ }
+
+ public function testHtmlContent()
+ {
+ $theme = Theme::load('test');
+ $content = Content::load($theme, 'html-content.htm');
+
+ $this->assertEquals('Stephen Saucier changed his profile picture — 7 hrs ago', $content->markup);
+ $this->assertEquals('Stephen Saucier changed his profile picture — 7 hrs ago', $content->parsedMarkup);
+ }
+
+}
\ No newline at end of file