X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fgabordemooij%2Fredbean%2Ftesting%2FRedUNIT%2FBlackhole%2FPlugins.php;fp=vendor%2Fgabordemooij%2Fredbean%2Ftesting%2FRedUNIT%2FBlackhole%2FPlugins.php;h=0000000000000000000000000000000000000000;hp=2ae7975f30019d7c46f4859ec0c00570a29fa89b;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/vendor/gabordemooij/redbean/testing/RedUNIT/Blackhole/Plugins.php b/vendor/gabordemooij/redbean/testing/RedUNIT/Blackhole/Plugins.php deleted file mode 100644 index 2ae7975f3..000000000 --- a/vendor/gabordemooij/redbean/testing/RedUNIT/Blackhole/Plugins.php +++ /dev/null @@ -1,82 +0,0 @@ -getMessage(), 'Plugin name may only contain alphanumeric characters.' ); - } - - try { - R::__callStatic( '---', function() {} ); - fail(); - } catch ( RedException $e ) { - asrt( $e->getMessage(), 'Plugin name may only contain alphanumeric characters.' ); - } - - try { - R::invalidMethod(); - fail(); - } catch ( RedException $e ) { - asrt( $e->getMessage(), 'Plugin \'invalidMethod\' does not exist, add this plugin using: R::ext(\'invalidMethod\')' ); - } - } -}