Removed RCS-style IDs.
[ruby-eet.git] / test / common.rb
index 877ecf454fa0537e2e3eed5ee092364678363ca8..b4e34307b64d5ffb464406e69164688f9ea7c11b 100644 (file)
@@ -1,5 +1,3 @@
-# $Id: common.rb 1 2005-03-26 01:45:38Z tilman $
-
 class WrappedString
        def initialize(blah)
                @blah = blah
@@ -14,19 +12,3 @@ class WrappedString
                {"buf" => [@blah]}
        end
 end
-
-module Test
-       module Unit
-               module Assertions
-                       def assert_run_successful(cmd, msg = nil)
-                               `#{cmd}`
-                               st = $?.exitstatus
-
-                               message = build_message(msg, <<EOT, st)
-Program failed with code <?>.
-EOT
-                               assert_block(message) { st == 0 }
-                       end
-               end
-       end
-end