You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2010/11/04 01:57:48 UTC

svn commit: r1030785 - /buildr/trunk/spec/core/cc_spec.rb

Author: boisvert
Date: Thu Nov  4 00:57:48 2010
New Revision: 1030785

URL: http://svn.apache.org/viewvc?rev=1030785&view=rev
Log:
cleanup

Modified:
    buildr/trunk/spec/core/cc_spec.rb

Modified: buildr/trunk/spec/core/cc_spec.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/spec/core/cc_spec.rb?rev=1030785&r1=1030784&r2=1030785&view=diff
==============================================================================
--- buildr/trunk/spec/core/cc_spec.rb (original)
+++ buildr/trunk/spec/core/cc_spec.rb Thu Nov  4 00:57:48 2010
@@ -90,13 +90,8 @@ describe Buildr::CCTask do
     write 'src/test/java/ExampleTest.java', "public class ExampleTest {}"
     
     project = define("foo")
-    cc = project.cc
-    
     compile = project.compile
-    
-
     test_compile = project.test.compile
-
     filter = project.resources
     
     # After first period:
@@ -141,15 +136,10 @@ describe Buildr::CCTask do
     end
     
     project = project("container:foo")
-    cc = project.cc
-    
     compile = project.compile
-
     test_compile = project.test.compile
-
     filter = project.resources
     
-    
     # After first period:
     compile.should_receive :invoke
     test_compile.should_receive :invoke