Skip to content

Instantly share code, notes, and snippets.

@tynor
Created January 4, 2015 02:19
Show Gist options
  • Save tynor/8f1ca23b8144eaa6d15c to your computer and use it in GitHub Desktop.
Save tynor/8f1ca23b8144eaa6d15c to your computer and use it in GitHub Desktop.
mod test_test;
fn f() -> i32 { 0 }
use super::f;
#[test]
fn f_returns_0() {
assert_eq!(f(), 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment