Skip to content

Commit

Permalink
Add library test to make CI happy (#16)
Browse files Browse the repository at this point in the history
* Add library test

* Remove using
  • Loading branch information
janhohenheim authored Sep 19, 2024
1 parent cf8e213 commit eaea419
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@ use bevy::prelude::*;
fn main() -> AppExit {
App::new().add_plugins(DefaultPlugins).run()
}

#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert!(true, "it works!");
}
}

0 comments on commit eaea419

Please sign in to comment.