Changeset 49f983
- Timestamp:
- 06/15/09 22:16:55 (3 years ago)
- Branches:
- master
- Children:
- 449d2b
- Parents:
- 91213d
- git-author:
- Tomash Brechko <tomash.brechko@…> (06/15/09 12:43:07)
- git-committer:
- Tomash Brechko <tomash.brechko@…> (06/15/09 22:16:55)
- Files:
-
- 2 edited
-
Changes (modified) (1 diff)
-
t/commands.t (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Changes
r91213d r49f983 37 37 Win32 (Cygwin, Mingw32). Problem report (for Windows 2000 and 38 38 below) and initial patch are by Yasuhiro Matsumoto. 39 40 Fix t/commands.t: starting with memcached 1.3.3 incr/decr 41 commands expect numeric value in the cache. Patch by Jason 42 M. Mills (RT#46883). 39 43 40 44 -
t/commands.t
r007b2e r49f983 10 10 11 11 if ($Memd::memd) { 12 plan tests => 6 6;12 plan tests => 68; 13 13 } else { 14 14 plan skip_all => 'Not connected'; … … 30 30 is($Memd::memd->get($key), 'v3', 'Fetch'); 31 31 32 ok($Memd::memd->replace($key, 0), 'replace with numeric'); 32 33 ok($Memd::memd->incr($key), 'Incr'); 33 34 ok($Memd::memd->get($key) == 1, 'Fetch'); … … 133 134 } 134 135 136 ok($Memd::memd->replace_multi(map { [$_,0] } @keys),'replace_multi to reset to numeric'); 135 137 $res = $Memd::memd->incr_multi([$keys[0], 2], [$keys[1]], @keys[2..$#keys]); 136 138 ok(values %$res == @keys);
Note: See TracChangeset
for help on using the changeset viewer.
