Browse Source

added exception test to view tests.

Taylor Otwell 13 years ago
parent
commit
794e0e6d17
1 changed files with 8 additions and 0 deletions
  1. 8 0
      tests/suite/ViewTest.php

+ 8 - 0
tests/suite/ViewTest.php

@@ -40,4 +40,12 @@ class ViewTest extends PHPUnit_Framework_TestCase {
 		$this->assertTrue(is_string(System\View::make('home/index')->get()));
 		$this->assertTrue(is_string(System\View::make('home/index')->get()));
 	}
 	}
 
 
+	/**
+	 * @expectedException Exception
+	 */
+	public function testExceptionIsThrownWhenViewDoesntExist()
+	{
+		System\View::make('doesnt-exist')->get();
+	}
+
 }
 }