From 96dbc46ccca70048d3b5c8399bea9094f7b778dc Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Tue, 15 Aug 2017 11:57:15 +0200 Subject: [PATCH] fix(doctest) Remove the `assert` asserter. It is now handled by Kitab. --- Asserter/Assert.php | 73 --------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 Asserter/Assert.php diff --git a/Asserter/Assert.php b/Asserter/Assert.php deleted file mode 100644 index 8c9fc0c..0000000 --- a/Asserter/Assert.php +++ /dev/null @@ -1,73 +0,0 @@ -fail( - $this->_( - 'The assertion `%s` has failed.', - $e->getMessage() - ) - ); - - return; - } - - $this->pass(); - - return $this; - } -}