summaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/config/test.rs
diff options
context:
space:
mode:
authorChristian Duerr <chrisduerr@users.noreply.github.com>2019-05-10 11:36:16 +0000
committerGitHub <noreply@github.com>2019-05-10 11:36:16 +0000
commit5d173f6df3b20308eb318cef4b58147b2197d5f9 (patch)
tree05638837bef25d65a818253814331a4f429f57ac /alacritty_terminal/src/config/test.rs
parent7738c52ed4eb177ead9f43d14207ecb129cfe617 (diff)
downloadalacritty-5d173f6df3b20308eb318cef4b58147b2197d5f9.tar.gz
alacritty-5d173f6df3b20308eb318cef4b58147b2197d5f9.zip
Refactor config parsing files
This is a large refactor of the config parsing structure, attempting to reduce the size of the file a bit by splitting it up into different modules with more specific purposes. This also fixes #2279.
Diffstat (limited to 'alacritty_terminal/src/config/test.rs')
-rw-r--r--alacritty_terminal/src/config/test.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/alacritty_terminal/src/config/test.rs b/alacritty_terminal/src/config/test.rs
new file mode 100644
index 00000000..e7890922
--- /dev/null
+++ b/alacritty_terminal/src/config/test.rs
@@ -0,0 +1,22 @@
+use crate::config::{Config, DEFAULT_ALACRITTY_CONFIG};
+
+#[test]
+fn parse_config() {
+ let config: Config =
+ ::serde_yaml::from_str(DEFAULT_ALACRITTY_CONFIG).expect("deserialize config");
+
+ // Sanity check that mouse bindings are being parsed
+ assert!(!config.mouse_bindings.is_empty());
+
+ // Sanity check that key bindings are being parsed
+ assert!(!config.key_bindings.is_empty());
+}
+
+#[test]
+fn default_match_empty() {
+ let default = Config::default();
+
+ let empty = serde_yaml::from_str("key: val\n").unwrap();
+
+ assert_eq!(default, empty);
+}