blob: 9f2f7df153415aeb65fe85c8bc0f4e57a7ea8079 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
require "open3"
describe "trash", :needs_macos do
let(:executable) { HOMEBREW_LIBRARY_PATH/"utils/trash.swift" }
let(:dir) { mktmpdir }
let(:file) { dir/"new_file" }
it "moves existing files to the trash" do
FileUtils.touch file
expect(file).to exist
out, err, status = Open3.capture3(executable, file)
expect(out).to match %r{moved #{file} to .*/\.Trash/\.*}
expect(err).to be_empty
expect(status).to be_a_success
expect(file).not_to exist
trashed_path = out.sub(/^moved #{Regexp.escape(file.to_s)} to (.*)\n$/, '\1')
FileUtils.rm_f trashed_path
end
it "fails when files don't exist" do
out, err, status = Open3.capture3(executable, file)
expect(out).to be_empty
expect(err).to eq "could not move #{file} to trash\n"
expect(status).to be_a_failure
end
end
|