diff options
| author | 2020-06-16 20:33:00 +0800 | |
|---|---|---|
| committer | 2020-06-16 20:33:00 +0800 | |
| commit | e0bedb6cc7b8363436d77ad4adba00390bcc456e (patch) | |
| tree | 14af82dcd11e0cf2a434c71cd48a5395fbcd51ff /tests | |
| parent | Log exception info for failed attachment uploads (diff) | |
| parent | Merge branch 'master' into help_channel_rediscache (diff) | |
Merge pull request #987 from python-discord/help_channel_rediscache
Add persistence to the help channel system
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/bot/utils/test_redis_cache.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/bot/utils/test_redis_cache.py b/tests/bot/utils/test_redis_cache.py index e5d6e4078..a2f0fe55d 100644 --- a/tests/bot/utils/test_redis_cache.py +++ b/tests/bot/utils/test_redis_cache.py @@ -49,7 +49,9 @@ class RedisCacheTests(unittest.IsolatedAsyncioTestCase): test_cases = ( ('favorite_fruit', 'melon'), ('favorite_number', 86), - ('favorite_fraction', 86.54) + ('favorite_fraction', 86.54), + ('favorite_boolean', False), + ('other_boolean', True), ) # Test that we can get and set different types. |