File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88--- - `Path.new` no longer supported (think it's more confusing that helpful
99--- and not really used as far as I can tell)
1010---
11+ --- - `Path.new` drops `sep` table param (eg. `Path:new {"foo\\bar/baz", sep = "/"}`)
12+ ---
1113--- - drop `__concat` metamethod? it was untested and had some todo comment,
1214--- not sure how functional it is
1315---
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ local function plat_path(p)
4646 return p :gsub (" /" , " \\ " )
4747end
4848
49-
5049-- set up mock file with consistent eol regardless of system (git autocrlf settings)
5150-- simplifies reading tests
5251local licence_lines = {
@@ -159,11 +158,6 @@ describe("Path2", function()
159158 return paths
160159 end
161160
162- it (" custom sep" , function ()
163- local p = Path :new { " foo\\ bar/baz" , sep = " /" }
164- assert .are .same (p .filename , " foo/bar/baz" )
165- end )
166-
167161 describe (" noshellslash" , function ()
168162 set_shellslash (false )
169163 test_filename (get_windows_paths ())
You can’t perform that action at this time.
0 commit comments