Sha256: e71d485a40168307c3af1fbe2a6bb806fae3cfaa7a52d72eada98f3d95f6c264

Contents?: true

Size: 325 Bytes

Versions: 3

Compression:

Stored size: 325 Bytes

Contents

require 'txt_file_mutator'
require "test/unit"

class TestTxtFileMutator < Test::Unit::TestCase

  def setup
    @tfm = TextFileMutator
    @file = 'DATA_REMOVE.txt'
    puts @tfm.instance_methods
  end

  def teardown
    ## Nothing really
  end

  def test_remove_line
    @tfm.remove_line @file, 'delete me'    
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
txt_file_mutator-0.2.4 test/test_remove_line_w_content.rb
txt_file_mutator-0.2.2 test/test_remove_line_w_content.rb
txt_file_mutator-0.2.1 test/test_remove_line_w_content.rb