From cde5411e8aad0436ca709a46e109cd38e4c21a9e Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 8 Jul 2012 22:35:50 +0200 Subject: [ticket/10974] Rename tests/mock_user.php -> tests/mock/user.php PHPBB3-10974 --- tests/mock_user.php | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 tests/mock_user.php (limited to 'tests/mock_user.php') diff --git a/tests/mock_user.php b/tests/mock_user.php deleted file mode 100644 index ec14ce430e..0000000000 --- a/tests/mock_user.php +++ /dev/null @@ -1,36 +0,0 @@ - '/'); - - private $options = array(); - public function optionget($item) - { - if (!isset($this->options[$item])) - { - throw new Exception(sprintf("You didn't set the option '%s' on the mock user using optionset.", $item)); - } - - return $this->options[$item]; - } - - public function optionset($item, $value) - { - $this->options[$item] = $value; - } -} -- cgit v1.2.1