Skip to content

Commit

Permalink
check one more edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
radeusgd committed Oct 5, 2024
1 parent 327f214 commit 3f7400c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/Base_Tests/src/Network/Enso_Cloud/Enso_File_Spec.enso
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,10 @@ add_specs suite_builder setup:Cloud_Tests_Setup = suite_builder.group "Enso Clou
nested_file.set_description my_description . should_equal nested_file
nested_file.description . should_equal my_description

# We can also set description back to empty
nested_file.set_description "" . should_equal nested_file
nested_file.description . should_equal ""

group_builder.specify "allows / as well as .. and . in resolve" <|
(Enso_File.root / "a/b/c") . should_equal (Enso_File.root / "a" / "b" / "c")
(Enso_File.root / "a///b/c") . should_equal (Enso_File.root / "a" / "b" / "c")
Expand Down

0 comments on commit 3f7400c

Please sign in to comment.