Removed unused assertion.
[ruby-eet.git] / test / common.rb
index 877ecf454fa0537e2e3eed5ee092364678363ca8..b1cac31c33245938abb3f43a32c491f5caf1c58b 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: common.rb 1 2005-03-26 01:45:38Z tilman $
+# $Id: common.rb 2 2005-03-26 13:39:17Z tilman $
 
 class WrappedString
        def initialize(blah)
@@ -14,19 +14,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