-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(libmake): ✅ add new tests and refactoring
- Loading branch information
1 parent
a926ce1
commit 6463816
Showing
11 changed files
with
51 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright notice and licensing information. | ||
// These lines indicate the copyright of the software and its licensing terms. | ||
// SPDX-License-Identifier: Apache-2.0 OR MIT indicates dual licensing under Apache 2.0 or MIT licenses. | ||
// Copyright © 2023-2024 LibMake. All rights reserved. | ||
|
||
/// The `test_ascii` module contains functionality for generating ASCII art from | ||
/// text using the FIGlet library. | ||
pub mod test_ascii; | ||
|
||
/// The `test_args` module contains functionality for parsing command-line arguments. | ||
pub mod test_args; | ||
|
||
/// The `test_csv` module contains functionality for parsing CSV files. | ||
pub mod test_csv; | ||
|
||
/// The `test_ini` module contains functionality for parsing INI files. | ||
pub mod test_ini; | ||
|
||
/// The `test_json` module contains functionality for parsing JSON files. | ||
pub mod test_json; | ||
|
||
/// The `test_toml` module contains functionality for parsing TOML files. | ||
pub mod test_toml; | ||
|
||
/// The `test_yaml` module contains functionality for parsing YAML files. | ||
pub mod test_yaml; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters