Support `file_write' status attributes

This commit is contained in:
Thibault Jouan
2014-10-08 22:30:12 +00:00
parent a84b34b7ca
commit c4006416e4
5 changed files with 34 additions and 61 deletions

View File

@@ -127,7 +127,7 @@ module Producer::Core
let(:content) { 'some_content' }
it 'opens the file' do
expect(sftp_file).to receive(:open).with(path, 'w', anything)
expect(sftp_file).to receive(:open).with(path, 'w')
fs.file_write path, content
end
@@ -138,11 +138,6 @@ module Producer::Core
end
fs.file_write path, content
end
it 'accepts an optional mode argument' do
expect(sftp_file).to receive(:open).with(anything, anything, 0600)
fs.file_write path, content, 0600
end
end
end
end