Skip to content

Commit

Permalink
No dynamic linking
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Jul 10, 2024
1 parent d087b54 commit d87292a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@ mod tests {
use super::*;

#[test]
fn test_can_create_app() {
create_app();
fn test_empty_app_has_no_cameras() {
let mut app = App::new();
assert_eq!(count_n_cameras(&mut app), 0);
}

#[test]
fn test_empty_app_has_no_moving_cameras() {
let mut app = App::new();
assert_eq!(count_n_cameras(&mut app), 0);
fn test_can_create_app() {
create_app();
}

#[test]
Expand Down

0 comments on commit d87292a

Please sign in to comment.