hydra/test/fixtures/write_file_with_pending_spe...

13 lines
252 B
Ruby
Raw Permalink Normal View History

require 'tmpdir'
2010-08-23 18:42:51 +00:00
require 'rspec'
2011-08-31 15:42:56 +00:00
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