From d4bc16abf331ade9e142fc2b90d1bd45cad3a932 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Tue, 20 Dec 2011 15:07:54 -0600 Subject: [PATCH] Testing Atoum. --- test/Tests/BootstrapTest.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/Tests/BootstrapTest.php diff --git a/test/Tests/BootstrapTest.php b/test/Tests/BootstrapTest.php new file mode 100644 index 0000000..ca19d5d --- /dev/null +++ b/test/Tests/BootstrapTest.php @@ -0,0 +1,24 @@ +assert->string($basedir)->match('/HPCloud/'); + } + + public function testAutoloader() { + \HPCloud\Bootstrap::useAutoloader(); + + // If we can construct a class, we are okay. + $test = new \HPCloud\Exception("TEST"); + } +}