Remove unused fsUtils.split()

This commit is contained in:
Kevin Sawicki
2013-06-12 20:44:15 -07:00
parent 0e52a3bcee
commit 4f65cb099a
2 changed files with 0 additions and 14 deletions

View File

@@ -31,11 +31,6 @@ describe "fsUtils", ->
expect(fsUtils.exists("")).toBe false
expect(fsUtils.exists(null)).toBe false
describe ".split(path)", ->
it "returns path components", ->
expect(fsUtils.split("/a/b/c.txt")).toEqual ["", "a", "b", "c.txt"]
expect(fsUtils.split("a/b/c.txt")).toEqual ["a", "b", "c.txt"]
describe ".makeTree(path)", ->
beforeEach ->
fsUtils.remove("/tmp/a") if fsUtils.exists("/tmp/a")