mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
make TestCase::From more generic
This commit is contained in:
parent
8c5ec95ac0
commit
5b07ce76fc
3 changed files with 19 additions and 23 deletions
|
@ -22,8 +22,13 @@ pub struct TestCase {
|
|||
pub out_selection: Selection,
|
||||
}
|
||||
|
||||
impl<S: Into<String>> From<(S, S, S)> for TestCase {
|
||||
fn from((input, keys, output): (S, S, S)) -> Self {
|
||||
impl<S, R, V> From<(S, R, V)> for TestCase
|
||||
where
|
||||
S: Into<String>,
|
||||
R: Into<String>,
|
||||
V: Into<String>,
|
||||
{
|
||||
fn from((input, keys, output): (S, R, V)) -> Self {
|
||||
let (in_text, in_selection) = test::print(&input.into());
|
||||
let (out_text, out_selection) = test::print(&output.into());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue