Hi, all.

I've just added small changes that fixes all tests on my Windows machine.
Changes were made only in tests. No any functionality changes.

I hope that we will see success message from Cerberus soon.

--
anatol (http://feeds.feedburner.com/apomozov-eng)
Index: test/test_gem_ext_rake_builder.rb
===================================================================
--- test/test_gem_ext_rake_builder.rb   (revision 1211)
+++ test/test_gem_ext_rake_builder.rb   (working copy)
@@ -32,7 +32,7 @@
       "(in #{realdir})\n"
     ]
 
-    assert_equal expected, output
+    expected.each_with_index{|line, indx| assert_equal 0, output[indx].index(line)}  #In the end of the line could be warning
   end
 
   def test_class_build_fail
@@ -59,3 +59,4 @@
 
 end
 
+
Index: test/gemutilities.rb
===================================================================
--- test/gemutilities.rb    (revision 1211)
+++ test/gemutilities.rb    (working copy)
@@ -75,7 +75,7 @@
       Gem::RemoteFetcher.instance_variable_set :@fetcher, nil
     end
 
-    FileUtils.rm_r @tempdir
+    FileUtils.rm_rf @tempdir
     ENV['GEMCACHE'] = nil
     Gem.clear_paths
     Gem::SourceInfoCache.instance_variable_set :@cache, nil
@@ -182,3 +182,4 @@
 
 end
 
+
_______________________________________________
Rubygems-developers mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rubygems-developers

Reply via email to