summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/directory.rs
AgeCommit message (Collapse)Author
2019-09-28feat: Use tilde for home_directory when under version control (#439)yuri
2019-09-20feat: add support for logical paths in directory (#366)Kevin Song
Adds the ability for starship to display the logical path instead of the physical path.
2019-08-26feat: Add ability to use an alternate directory truncation style (#239)Neil Kistner
* Add ability to use an alternate directory truncation style
2019-08-21fix: Failing Tests if home is a git directory (#214)Kevin Song
2019-08-18fix: Fix directory_in_root integration test on Windows (#181)John Merchant
2019-08-16feat: Add option to control git directory truncation (#165)Saghm Rossi
2019-08-16fix: Fix compilation on NixOS with sandboxing (#164)Bruno Bigras
2019-08-13fix: Fix issues with nodejs and golang configuration (#146)Matan Kushner
* fix: Give all modules a single name * test: Add missing config tests for nodejs and golang * test: Rename dir to directory
2019-07-28feat: Allow directory truncation length to be configured (#120)Andrew Dassonville
This allows the directory truncation length to be configured. Previously, it was hard-coded to truncate to 3 parent directories.
2019-06-10Add support for prompt configuration (#62)Matan Kushner
- Create `Config` struct that is added to `Context` when initialized - Read `~/.confg/starship.toml` during initialization (can be updated later to also look at `$XDG_CONFIG_HOME`) - `Context` now has a method for creating modules. This allows us to provide modules with a reference to the configuration specific to that module
2019-06-06Refactor integration tests (#71)Matan Kushner
- Create subcommands to be able to print modules independently - `starship prompt` will print the full prompt - `starship module <MODULE_NAME>` will print a specific module e.g. `starship module python` - Added `--path` flag to print the prompt or modules without being in a specific directory - Added `--status` flag to provide the status of the last command, instead of requiring it as an argument - Refactored integration tests to be end-to-end tests, since there was no way in integration tests to set the environment variables for a specific command, which was required for the `username` module - Moved e2e tests to `tests/testsuite` to allow for a single binary to be built - Tests will build/run faster - No more false positives for unused functions - Added tests for `username` - Removed codecov + tarpaulin 😢