Changeset 621364
- Timestamp:
- 11/05/2012 06:46:15 PM (13 years ago)
- Location:
- oop-plugin-template-solution/trunk
- Files:
-
- 3 edited
-
oop-plugin-template-solution.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
tests/LoginTest.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
oop-plugin-template-solution/trunk/oop-plugin-template-solution.php
r621307 r621364 8 8 * 9 9 * Plugin URI: http://wordpress.org/extend/plugins/oop-plugin-template-solution/ 10 * Version: 1.0. 110 * Version: 1.0.2 11 11 * (Remember to change the VERSION constant, below, as well!) 12 12 * Author: Daniel Convissor … … 50 50 * This plugin's version 51 51 */ 52 const VERSION = '1.0. 1';52 const VERSION = '1.0.2'; 53 53 54 54 /** -
oop-plugin-template-solution/trunk/readme.txt
r621307 r621364 186 186 == Changelog == 187 187 188 = 1.0.2 (2012-11-05) = 189 * Explain why can't use PHPUnit's @expectedException functionality. 190 188 191 = 1.0.1 (2012-11-05) = 189 192 * Clarify instructions and descriptions. -
oop-plugin-template-solution/trunk/tests/LoginTest.php
r621289 r621364 72 72 * How to account for expected errors and test wp_redirect() did what 73 73 * is expected 74 * 75 * Can't use PHPUnit's expectedException / expectedExceptionMessage 76 * functionality because test method execution ends when the error is 77 * generated. We need this test method to run to its end so it can check 78 * the behavior after the error. 74 79 */ 75 80 public function test_redirect() {
Note: See TracChangeset
for help on using the changeset viewer.