Sha256: fbb9a90ec2d656d6cf150fd3cb956a8aed4b45e2d741c70a40a520c781c63d15

Contents?: true

Size: 239 Bytes

Versions: 3

Compression:

Stored size: 239 Bytes

Contents

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

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
causes-hydra-0.21.0 test/fixtures/write_file_with_pending_spec.rb
sskirby-hydra-0.21.0 test/fixtures/write_file_with_pending_spec.rb
hydra-0.21.0 test/fixtures/write_file_with_pending_spec.rb