Remove test_ prefix from test functions.

This commit is contained in:
Isis Lovecruft 2017-03-14 23:19:38 +00:00
parent 4eaa1321ee
commit b5531c1257
Failed to extract signature

View file

@ -390,7 +390,7 @@ mod test {
use super::*; use super::*;
#[test] #[test]
fn test_unmarshal_marshal() { // TestUnmarshalMarshal fn unmarshal_marshal() { // TestUnmarshalMarshal
let mut cspring: OsRng; let mut cspring: OsRng;
let mut keypair: Keypair; let mut keypair: Keypair;
let mut x: Option<ExtendedPoint>; let mut x: Option<ExtendedPoint>;
@ -415,7 +415,7 @@ mod test {
} }
#[test] #[test]
fn test_sign_verify() { // TestSignVerify fn sign_verify() { // TestSignVerify
let mut cspring: OsRng; let mut cspring: OsRng;
let keypair: Keypair; let keypair: Keypair;
let good_sig: Signature; let good_sig: Signature;
@ -443,7 +443,7 @@ mod test {
#[cfg(test)] #[cfg(test)]
#[cfg(not(release))] #[cfg(not(release))]
#[test] #[test]
fn test_golden() { // TestGolden fn golden() { // TestGolden
let mut line: String; let mut line: String;
let mut lineno: usize = 0; let mut lineno: usize = 0;