Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
simsekgokhan committed Dec 19, 2023
1 parent 72fb233 commit b223c40
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This repo is for my personal use with tips, tools, ready to use examples/explana
> Use [clippy - the Rust linter](https://github.com/rust-lang/rust-clippy) (also use it in CI: [clippy.yml](.github/workflows/clippy.yml))
> Use [rust-analyzer](https://github.com/rust-lang/rust-analyzer)
> Use [integration_tests](src/unit_integration_tests.rs) (also use it in CI: [integration_tests.yml](.github/workflows/integration_tests.yml))
> Use [unit_test](src/unit_test.rs) (also use it in CI: [unit_tests.yml](.github/workflows/unit_tests.yml))
> Use [unit_test](src/unit_tested_file.rs) (also use it in CI: [unit_tests.yml](.github/workflows/unit_tests.yml))
> Use `sccache` for faster builds (see setup and how to use in section "docs" below)
> Use [.cargo/config.toml](.cargo/config.toml) (see `faster_builds_with_linker_config` in section "docs" below)
> Use `vscode debugger` (see setup and examples in section "docs" below)
Expand Down Expand Up @@ -57,7 +57,7 @@ This repo is for my personal use with tips, tools, ready to use examples/explana
> [traits_supertraits.rs](src/traits_supertraits.rs)
> [type_.rs](src/type_.rs)
> [unit_integration_tests.rs](src/unit_integration_tests.rs)
> [unit_test.rs](src/unit_test.rs)
> [unit_tested_file.rs](src/unit_tested_file.rs)
> [web-server-async-and-parallel](src/web-server-async-and-parallel)
> [web-server-multi-threaded](src/web-server-multi-threaded)
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mod re_export;
mod serde_json;
mod smart_ptrs;
mod string_concat;
mod unit_test;
mod unit_tested_file;
mod unit_integration_tests;
mod temp;
mod type_;
Expand Down
2 changes: 1 addition & 1 deletion src/unit_integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

#[test]
fn test_add_one() {
assert_eq!(2, crate::unit_test::add_one(1));
assert_eq!(2, crate::unit_tested_file::add_one(1));
}
File renamed without changes.

0 comments on commit b223c40

Please sign in to comment.