Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
dfa1 committed Dec 21, 2023
1 parent d4a73c5 commit f4e62b6
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ void outsideGit() {
void insideGit() {
// Given
Path path = Paths.get(".").toAbsolutePath();
System.out.println("path is " + path);
throw new IllegalArgumentException("path " + path.toString());
/*
given(state.getCwd()).willReturn(path);
GitCurrentBranchPromptProvider sut = new GitCurrentBranchPromptProvider();
Expand All @@ -69,7 +70,7 @@ void insideGit() {
String result = sut.provide(state);
// Then
assertThat(result).isNotNull();
assertThat(result).isNotNull();*/
}

}

0 comments on commit f4e62b6

Please sign in to comment.