diff options
| -rw-r--r-- | .travis.yml | 7 | ||||
| -rw-r--r-- | src/lib.rs | 6 |
2 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..5fd3614abc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: rust +rust: + - stable + - nightly +os: + - linux + - osx diff --git a/src/lib.rs b/src/lib.rs index a24d7c1626..949a029d45 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,9 @@ #![deny(missing_docs)] //! The core components of the talpidaemon VPN client. + +#[cfg(test)] +mod tests { + #[test] + fn it_works() {} +} |
