From 1e54872873270b89700c3f88783bdc301ba40e50 Mon Sep 17 00:00:00 2001 From: Christo Kotze Date: Wed, 14 Feb 2018 13:30:21 +0400 Subject: [PATCH] Added test for Home folder highlighting --- test/segments/dir.spec | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/test/segments/dir.spec b/test/segments/dir.spec index d1a496e7..41f82eca 100755 --- a/test/segments/dir.spec +++ b/test/segments/dir.spec @@ -429,9 +429,11 @@ function testTruncateToUniqueWorks() { function testBoldHomeDirectoryWorks() { POWERLEVEL9K_DIR_PATH_HIGHLIGHT_BOLD=true + cd ~ assertEquals "%K{blue} %F{black}%B~%b %k%F{blue}%f " "$(build_left_prompt)" + cd - unset POWERLEVEL9K_DIR_PATH_HIGHLIGHT_BOLD } @@ -445,4 +447,14 @@ function testBoldOtherDirectoryWorks() { unset POWERLEVEL9K_DIR_PATH_HIGHLIGHT_BOLD } +function testDirHighlightHomeWorks() { + POWERLEVEL9K_DIR_PATH_HIGHLIGHT_FOREGROUND='red' + cd ~ + + assertEquals "%K{blue} %F{black}%F{red}~%b %k%F{blue}%f " "$(build_left_prompt)" + + cd - + unset POWERLEVEL9K_DIR_PATH_HIGHLIGHT_FOREGROUND +} + source shunit2/source/2.1/src/shunit2