diff options
Diffstat (limited to 'third_party/rust/fluent-testing/src/scenarios/simple.rs')
-rw-r--r-- | third_party/rust/fluent-testing/src/scenarios/simple.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/rust/fluent-testing/src/scenarios/simple.rs b/third_party/rust/fluent-testing/src/scenarios/simple.rs new file mode 100644 index 0000000000..aff4c0d313 --- /dev/null +++ b/third_party/rust/fluent-testing/src/scenarios/simple.rs @@ -0,0 +1,16 @@ +use super::structs::*; +use crate::queries; + +pub fn get_scenario() -> Scenario { + Scenario::new( + "simple", + vec![FileSource::new( + "browser", + "browser/{locale}/", + vec!["en-US", "pl"], + )], + vec!["en-US"], + vec!["browser/sanitize.ftl"], + queries![("history-section-label", "History")], + ) +} |