hydra/test/fixtures/write_file_with_pending_spe...

13 lines
252 B
Ruby

require 'tmpdir'
require 'rspec'
describe "file writing" do
it "writes to a file" do
File.open(File.join(Dir.consistent_tmpdir, 'hydra_test.txt'), 'a') do |f|
f.write "HYDRA"
end
end
it 'could do so much more' # pending spec
end