2010-04-20 10:33:28 +00:00
|
|
|
require 'tmpdir'
|
2010-08-23 18:42:51 +00:00
|
|
|
require 'rspec'
|
2011-08-31 15:42:56 +00:00
|
|
|
|
|
|
|
describe "file writing" do
|
2010-04-20 10:33:28 +00:00
|
|
|
it "writes to a file" do
|
2010-06-09 18:24:32 +00:00
|
|
|
File.open(File.join(Dir.consistent_tmpdir, 'hydra_test.txt'), 'a') do |f|
|
2010-04-20 10:33:28 +00:00
|
|
|
f.write "HYDRA"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
it 'could do so much more' # pending spec
|
|
|
|
end
|
|
|
|
|