Skip to content

Commit

Permalink
Added back unhappy test and notated it as a test per PR change request
Browse files Browse the repository at this point in the history
  • Loading branch information
daidoji committed Oct 23, 2023
1 parent 1222b4b commit d9c926a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/core/bexter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,4 +311,17 @@ mod test {
assert_eq!(bexter.qb2().unwrap(), qb2);
assert_eq!(bexter.bext().unwrap(), bext);
}

#[rstest]
fn unhappy() {
assert!(Bexter::new(
None,
None,
None,
None,
Some("DKxy2sgzfplyr-tgwIxS19f2OchFHtLwPWD3v4oYimBx"),
None
)
.is_err());
}
}

0 comments on commit d9c926a

Please sign in to comment.