Skip to content
Snippets Groups Projects
Commit 1be5eeec authored by Markus Reiter's avatar Markus Reiter
Browse files

Add test and comment for `PATH#existing`.

parent 1c7238e5
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,7 @@ class PATH
def existing
existing_path = select(&File.method(:directory?))
# return nil instead of empty PATH, to unset environment variables
existing_path unless existing_path.empty?
end
......
......@@ -107,5 +107,9 @@ describe PATH do
expect(path.existing.to_ary).to eq(["/path1"])
expect(path.to_ary).to eq(["/path1", "/path2"])
end
it "returns nil instead of an empty #{described_class}" do
expect(described_class.new.existing).to be nil
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment