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