Test CI should fail

This commit is contained in:
Federico Terzi 2019-09-21 18:21:26 +02:00
parent 477f2e574a
commit ae0f68d0ea
2 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,7 @@
![Language](https://img.shields.io/badge/language-rust-orange)
![Platforms](https://img.shields.io/badge/platforms-Windows%2C%20macOS%20and%20Linux-blue)
![License](https://img.shields.io/github/license/federico-terzi/espanso)
[![Build Status](https://dev.azure.com/freddy6896/espanso/_apis/build/status/federico-terzi.espanso?branchName=master)](https://dev.azure.com/freddy6896/espanso/_build/latest?definitionId=1&branchName=master)
![example](images/example.gif)

View File

@ -468,4 +468,9 @@ mod tests {
assert_eq!(config_manager.calculate_active_config().name, "firefox");
assert_eq!(config_manager.active_config().name, "default");
}
#[test]
fn test_should_fail() {
assert!(false);
}
}