You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by to...@apache.org on 2016/05/01 08:33:50 UTC

buildr git commit: remove test that breaks on different versions of MRI

Repository: buildr
Updated Branches:
  refs/heads/master 38cc531e3 -> 0d2d1faf9


remove test that breaks on different versions of MRI


Project: http://git-wip-us.apache.org/repos/asf/buildr/repo
Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/0d2d1faf
Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/0d2d1faf
Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/0d2d1faf

Branch: refs/heads/master
Commit: 0d2d1faf99157a8c765e0df089012dc0c04dcd8d
Parents: 38cc531
Author: Antoine Toulme <an...@lunar-ocean.com>
Authored: Sat Apr 30 23:33:43 2016 -0700
Committer: Antoine Toulme <an...@lunar-ocean.com>
Committed: Sat Apr 30 23:33:43 2016 -0700

----------------------------------------------------------------------
 spec/core/application_spec.rb | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/0d2d1faf/spec/core/application_spec.rb
----------------------------------------------------------------------
diff --git a/spec/core/application_spec.rb b/spec/core/application_spec.rb
index 0d32dad..1a4d9ca 100644
--- a/spec/core/application_spec.rb
+++ b/spec/core/application_spec.rb
@@ -149,11 +149,6 @@ describe Buildr::Application do
       Buildr.application.gems.size.should be(2)
     end
 
-    it 'should return a Gem::Specification for each installed gem' do
-      load_with_yaml
-      Buildr.application.gems.each { |gem| gem.should be_kind_of(Bundler::StubSpecification) }
-    end
-
     it 'should parse Gem name correctly' do
       load_with_yaml
       Buildr.application.gems.map(&:name).should include('rspec', 'rake')