Skip to content

Commit

Permalink
removing the merge test as its no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
vivasvan1 committed Apr 21, 2024
1 parent 83a8f6f commit d655dee
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions zio-cli/jvm/src/test/scala/zio/cli/FileBasedArgs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ object FileBasedArgs extends ZIOSpecDefault {

} yield assert(config_args)(hasSameElements(List("home=true", "dir=true", "home=false")))
},
test("should merge duplicate options") {
val options = List("option1=value1", "option2=value2", "option1=value3");
val mergedOptions = configFileOps.mergeOptionsBasedOnPriority(options);
assert(mergedOptions)(equalTo(List("option1=value3", "option2=value2")));
},
test("should return directory ~/home and ./ which have .testApp config file for loading the args") {
for {
// Create Sample config files
Expand Down

0 comments on commit d655dee

Please sign in to comment.