diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-12-28 21:25:48 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2016-01-04 13:47:26 +0100 |
commit | 79cdf170d2ab6c5378cfbf61d5c8888a4c666190 (patch) | |
tree | 931a5d2b6b3754d43d610fb28d2e452b55ee54d4 /tests | |
parent | b0c3aa0be960443b3959d0026f29f1dba18a08c3 (diff) | |
download | biboumi-79cdf170d2ab6c5378cfbf61d5c8888a4c666190.tar.gz biboumi-79cdf170d2ab6c5378cfbf61d5c8888a4c666190.tar.bz2 biboumi-79cdf170d2ab6c5378cfbf61d5c8888a4c666190.tar.xz biboumi-79cdf170d2ab6c5378cfbf61d5c8888a4c666190.zip |
Use the configured encoding value when decoding received messages
Diffstat (limited to 'tests')
-rw-r--r-- | tests/database.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/database.cpp b/tests/database.cpp index 5d557fd..b059d0d 100644 --- a/tests/database.cpp +++ b/tests/database.cpp @@ -83,6 +83,12 @@ TEST_CASE("Database") THEN("we get the channel option") CHECK(r.encodingIn == "channelEncoding"); } + WHEN("we fetch that option, with no channel specified") + { + auto r = Database::get_irc_channel_options_with_server_default(owner, server, ""); + THEN("we get the server option") + CHECK(r.encodingIn == "serverEncoding"); + } } } |