-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #20 Separating our shell_types to it's own module to improve readability of bloated main function. Modifying test structure to match more modern patterns (tests directory matching src structure)
- Loading branch information
1 parent
0bacb82
commit 90b3ba9
Showing
10 changed files
with
323 additions
and
197 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -12,3 +12,4 @@ termion = "*" | |
|
||
|
||
[dev-dependencies] | ||
rstest = "0.12.0" |
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
mod help; | ||
mod init; | ||
mod script; | ||
#[cfg(test)] | ||
mod tests; | ||
pub use self::help::help; | ||
pub use self::init::init; | ||
pub use self::script::Script; |
Oops, something went wrong.