You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by as...@apache.org on 2008/10/20 18:54:06 UTC

svn commit: r706337 - in /incubator/buildr/trunk: lib/buildr/core/checks.rb spec/core/checks_spec.rb

Author: assaf
Date: Mon Oct 20 09:54:05 2008
New Revision: 706337

URL: http://svn.apache.org/viewvc?rev=706337&view=rev
Log:
Context (typically project) methods available directly in checks: added specs for that, also extended number of methods exposed that way.

Modified:
    incubator/buildr/trunk/lib/buildr/core/checks.rb
    incubator/buildr/trunk/spec/core/checks_spec.rb

Modified: incubator/buildr/trunk/lib/buildr/core/checks.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/lib/buildr/core/checks.rb?rev=706337&r1=706336&r2=706337&view=diff
==============================================================================
--- incubator/buildr/trunk/lib/buildr/core/checks.rb (original)
+++ incubator/buildr/trunk/lib/buildr/core/checks.rb Mon Oct 20 09:54:05 2008
@@ -115,8 +115,8 @@
         # - All matchers defined by Buildr and RSpec.
         klass = Class.new
         klass.instance_eval do
-          context.class.instance_methods(false).each do |method|
-            define_method(method) { |*args| context.send(method, *args) }
+          context.class.instance_methods.each do |method|
+            define_method(method) { |*args| context.send(method, *args) } unless instance_methods.include?(method)
           end
           define_method(:it) { subject }
           define_method(:description) { description }

Modified: incubator/buildr/trunk/spec/core/checks_spec.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/spec/core/checks_spec.rb?rev=706337&r1=706336&r2=706337&view=diff
==============================================================================
--- incubator/buildr/trunk/spec/core/checks_spec.rb (original)
+++ incubator/buildr/trunk/spec/core/checks_spec.rb Mon Oct 20 09:54:05 2008
@@ -17,53 +17,53 @@
 require File.join(File.dirname(__FILE__), '../spec_helpers')
 
 
-describe Project, " check task" do
+describe Project, 'check task' do
 
   it "should execute last thing from package task" do
-    task "action"
-    define "foo", :version=>"1.0" do
+    task 'action'
+    define 'foo', :version=>'1.0' do
       package :jar
-      task("package").enhance { task("action").invoke }
+      task('package').enhance { task('action').invoke }
     end
-    lambda { project("foo").task("package").invoke }.should run_tasks(["foo:package", "action", "foo:check"])
+    lambda { project('foo').task('package').invoke }.should run_tasks(['foo:package', 'action', 'foo:check'])
   end
 
   it "should execute all project's expectations" do
-    task "expectation"
-    define "foo", :version=>"1.0" do
-      check  { task("expectation").invoke } 
+    task 'expectation'
+    define 'foo', :version=>'1.0' do
+      check  { task('expectation').invoke } 
     end
-    lambda { project("foo").task("package").invoke }.should run_task("expectation")
+    lambda { project('foo').task('package').invoke }.should run_task('expectation')
   end
 
   it "should succeed if there are no expectations" do
-    define "foo", :version=>"1.0"
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    define 'foo', :version=>'1.0'
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should succeed if all expectations passed" do
-    define "foo", :version=>"1.0" do
+    define 'foo', :version=>'1.0' do
       check { true }
       check { false }
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should fail if any expectation failed" do
-    define "foo", :version=>"1.0" do
+    define 'foo', :version=>'1.0' do
       check
-      check { fail "sorry" } 
+      check { fail 'sorry' } 
       check
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 end
 
 
-describe Project, "#check" do
+describe Project, '#check' do
 
   it "should add expectation" do
-    define "foo" do
+    define 'foo' do
       expectations.should be_empty
       check
       expectations.size.should be(1)
@@ -71,115 +71,127 @@
   end
 
   it "should treat no arguments as expectation against project" do
-    define "foo" do
+    define 'foo' do
       subject = self
       check do
         it.should be(subject)
         description.should eql(subject.to_s)
       end
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should treat single string argument as description, expectation against project" do
-    define "foo" do
+    define 'foo' do
       subject = self
       check "should be project" do
         it.should be(subject)
         description.should eql("#{subject} should be project")
       end
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should treat single object argument as subject" do
-    define "foo" do
+    define 'foo' do
       subject = Object.new
       check subject do
         it.should be(subject)
         description.should eql(subject.to_s)
       end
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should treat first object as subject, second object as description" do
-    define "foo" do
+    define 'foo' do
       subject = Object.new
       check subject, "should exist" do
         it.should be(subject)
         description.should eql("#{subject} should exist")
       end
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should work without block" do
-    define "foo" do
+    define 'foo' do
       check "implement later"
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
+  end
+
+  it 'should pass method calls to context' do
+    define 'foo', :version=>'1.0' do
+      subject = self
+      check "should be project" do
+        it.should be(subject)
+        name.should eql(subject.name)
+        package(:jar).should eql(subject.package(:jar))
+      end
+    end
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 end
 
 
-describe Buildr::Checks::Expectation, " matchers" do
+describe Buildr::Checks::Expectation, 'matchers' do
 
   it "should include Buildr matchers exist and contain" do
-    define "foo" do
+    define 'foo' do
       check do
         self.should respond_to(:exist)
         self.should respond_to(:contain)
       end
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should include RSpec matchers like be and eql" do
-    define "foo" do
+    define 'foo' do
       check do
         self.should respond_to(:be)
         self.should respond_to(:eql)
       end
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should include RSpec predicates like be_nil and be_empty" do
-    define "foo" do
+    define 'foo' do
       check do
         nil.should be_nil
         [].should be_empty
       end
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 end
 
 
-describe Buildr::Checks::Expectation, " exist" do
+describe Buildr::Checks::Expectation, 'exist' do
 
   it "should pass if file exists" do
-    define "foo" do
-      build file("test") { |task| write task.name }
-      check(file("test")) { it.should exist }
+    define 'foo' do
+      build file('test') { |task| write task.name }
+      check(file('test')) { it.should exist }
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should fail if file does not exist" do
-    define "foo" do
-      check(file("test")) { it.should exist }
+    define 'foo' do
+      check(file('test')) { it.should exist }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 
   it "should not attempt to invoke task" do
-    define "foo" do
-      file("test") { |task| write task.name }
-      check(file("test")) { it.should exist }
+    define 'foo' do
+      file('test') { |task| write task.name }
+      check(file('test')) { it.should exist }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 end
 
@@ -187,42 +199,42 @@
 describe Buildr::Checks::Expectation, " be_empty" do
 
   it "should pass if file has no content" do
-    define "foo" do
-      build file("test") { write "test" }
-      check(file("test")) { it.should be_empty }
+    define 'foo' do
+      build file('test') { write 'test' }
+      check(file('test')) { it.should be_empty }
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should fail if file has content" do
-    define "foo" do
-      build file("test") { write "test", "something" }
-      check(file("test")) { it.should be_empty }
+    define 'foo' do
+      build file('test') { write 'test', "something" }
+      check(file('test')) { it.should be_empty }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 
   it "should fail if file does not exist" do
-    define "foo" do
-      check(file("test")) { it.should be_empty }
+    define 'foo' do
+      check(file('test')) { it.should be_empty }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 
   it "should pass if directory is empty" do
-    define "foo" do
-      build file("test") { mkpath "test" }
-      check(file("test")) { it.should be_empty }
+    define 'foo' do
+      build file('test') { mkpath 'test' }
+      check(file('test')) { it.should be_empty }
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should fail if directory has any files" do
-    define "foo" do
-      build file("test") { write "test/file" }
-      check(file("test")) { it.should be_empty }
+    define 'foo' do
+      build file('test') { write 'test/file' }
+      check(file('test')) { it.should be_empty }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 end
 
@@ -230,113 +242,113 @@
 describe Buildr::Checks::Expectation, " contain(file)" do
 
   it "should pass if file content matches string" do
-    define "foo" do
-      build file("test") { write "test", "something" }
-      check(file("test")) { it.should contain("thing") }
+    define 'foo' do
+      build file('test') { write 'test', 'something' }
+      check(file('test')) { it.should contain('thing') }
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should pass if file content matches pattern" do
-    define "foo" do
-      build file("test") { write "test", "something\nor\nanother" }
-      check(file("test")) { it.should contain(/or/) }
+    define 'foo' do
+      build file('test') { write 'test', "something\nor\nanother" }
+      check(file('test')) { it.should contain(/or/) }
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should pass if file content matches all arguments" do
-    define "foo" do
-      build file("test") { write "test", "something\nor\nanother" }
-      check(file("test")) { it.should contain(/or/, /other/) }
+    define 'foo' do
+      build file('test') { write 'test', "something\nor\nanother" }
+      check(file('test')) { it.should contain(/or/, /other/) }
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should fail unless file content matchs all arguments" do
-    define "foo" do
-      build file("test") { write "test", "something" }
-      check(file("test")) { it.should contain(/some/, /other/) }
+    define 'foo' do
+      build file('test') { write 'test', 'something' }
+      check(file('test')) { it.should contain(/some/, /other/) }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 
   it "should fail if file content does not match" do
-    define "foo" do
-      build file("test") { write "test", "something" }
-      check(file("test")) { it.should contain(/other/) }
+    define 'foo' do
+      build file('test') { write 'test', "something" }
+      check(file('test')) { it.should contain(/other/) }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 
   it "should fail if file does not exist" do
-    define "foo" do
-      check(file("test")) { it.should contain(/anything/) }
+    define 'foo' do
+      check(file('test')) { it.should contain(/anything/) }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 end
 
 
-describe Buildr::Checks::Expectation, " contain(directory)" do
+describe Buildr::Checks::Expectation, 'contain(directory)' do
 
   it "should pass if directory contains file" do
-    write "resources/test"
-    define "foo" do
-      check(file("resources")) { it.should contain("test") }
+    write 'resources/test'
+    define 'foo' do
+      check(file('resources')) { it.should contain('test') }
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should pass if directory contains glob pattern" do
-    write "resources/with/test"
-    define "foo" do
-      check(file("resources")) { it.should contain("**/t*st") }
+    write 'resources/with/test'
+    define 'foo' do
+      check(file('resources')) { it.should contain('**/t*st') }
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should pass if directory contains all arguments" do
-    write "resources/with/test"
-    define "foo" do
-      check(file("resources")) { it.should contain("**/test", "**/*") }
+    write 'resources/with/test'
+    define 'foo' do
+      check(file('resources')) { it.should contain('**/test', '**/*') }
     end
-    lambda { project("foo").task("package").invoke }.should_not raise_error
+    lambda { project('foo').task('package').invoke }.should_not raise_error
   end
 
   it "should fail unless directory contains all arguments" do
-    write "resources/test"
-    define "foo" do
-      check(file("resources")) { it.should contain("test", "or-not") }
+    write 'resources/test'
+    define 'foo' do
+      check(file('resources')) { it.should contain('test', 'or-not') }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 
   it "should fail if directory is empty" do
-    mkpath "resources"
-    define "foo" do
-      check(file("resources")) { it.should contain("test") }
+    mkpath 'resources'
+    define 'foo' do
+      check(file('resources')) { it.should contain('test') }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 
   it "should fail if directory does not exist" do
-    define "foo" do
-      check(file("resources")) { it.should contain }
+    define 'foo' do
+      check(file('resources')) { it.should contain }
     end
-    lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+    lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
   end
 end
 
 
 describe Buildr::Checks::Expectation do
   
-  shared_examples_for "all archive types" do
+  shared_examples_for 'all archive types' do
     
     before do
       archive = @archive
-      define "foo", :version=>"1.0" do
-        package(archive).include("resources")
+      define 'foo', :version=>'1.0' do
+        package(archive).include('resources')
       end
     end
     
@@ -351,141 +363,141 @@
     describe '#exist' do
       
       it "should pass if archive path exists" do
-        write "resources/test"
+        write 'resources/test'
         check(package.path('resources')) { it.should exist }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should fail if archive path does not exist" do
-        mkpath "resources"
-        check(package) { it.path("not-resources").should exist }
-        lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+        mkpath 'resources'
+        check(package) { it.path('not-resources').should exist }
+        lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
       end
       
       it "should pass if archive entry exists" do
-        write "resources/test"
-        check(package.entry("resources/test")) { it.should exist }
-        check(package.path("resources").entry("test")) { it.should exist }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        write 'resources/test'
+        check(package.entry('resources/test')) { it.should exist }
+        check(package.path('resources').entry('test')) { it.should exist }
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should fail if archive path does not exist" do
-        mkpath "resources"
-        check(package.entry("resources/test")) { it.should exist }
-        lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+        mkpath 'resources'
+        check(package.entry('resources/test')) { it.should exist }
+        lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
       end      
     end
     
     describe '#be_empty' do
       it "should pass if archive path is empty" do
-        mkpath "resources"
-        check(package.path("resources")) { it.should be_empty }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        mkpath 'resources'
+        check(package.path('resources')) { it.should be_empty }
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should fail if archive path has any entries" do
-        write "resources/test"
-        check(package.path("resources")) { it.should be_empty }
-        lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+        write 'resources/test'
+        check(package.path('resources')) { it.should be_empty }
+        lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
       end
       
       it "should pass if archive entry has no content" do
-        write "resources/test"
-        check(package.entry("resources/test")) { it.should be_empty }
-        check(package.path("resources").entry("test")) { it.should be_empty }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        write 'resources/test'
+        check(package.entry('resources/test')) { it.should be_empty }
+        check(package.path('resources').entry('test')) { it.should be_empty }
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should fail if archive entry has content" do
-        write "resources/test", "something"
-        check(package.entry("resources/test")) { it.should be_empty }
-        lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+        write 'resources/test', 'something'
+        check(package.entry('resources/test')) { it.should be_empty }
+        lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
       end
       
       it "should fail if archive entry does not exist" do
-        mkpath "resources"
-        check(package.entry("resources/test")) { it.should be_empty }
-        lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+        mkpath 'resources'
+        check(package.entry('resources/test')) { it.should be_empty }
+        lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
       end
     end
     
-    describe "#contain(entry)" do
+    describe '#contain(entry)' do
       
       it "should pass if archive entry content matches string" do
-        write "resources/test", "something"
-        check(package.entry("resources/test")) { it.should contain("thing") }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        write 'resources/test', 'something'
+        check(package.entry('resources/test')) { it.should contain('thing') }
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should pass if archive entry content matches pattern" do
-        write "resources/test", "something\nor\another"
-        check(package.entry("resources/test")) { it.should contain(/or/) }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        write 'resources/test', "something\nor\another"
+        check(package.entry('resources/test')) { it.should contain(/or/) }
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should pass if archive entry content matches all arguments" do
-        write "resources/test", "something\nor\nanother"
-        check(package.entry("resources/test")) { it.should contain(/or/, /other/) }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        write 'resources/test', "something\nor\nanother"
+        check(package.entry('resources/test')) { it.should contain(/or/, /other/) }
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should fail unless archive path contains all arguments" do
-        write "resources/test", "something"
-        check(package.entry("resources/test")) { it.should contain(/some/, /other/) }
-        lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+        write 'resources/test', 'something'
+        check(package.entry('resources/test')) { it.should contain(/some/, /other/) }
+        lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
       end
       
       it "should fail if archive entry content does not match" do
-        write "resources/test", "something"
-        check(package.entry("resources/test")) { it.should contain(/other/) }
-        lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+        write 'resources/test', 'something'
+        check(package.entry('resources/test')) { it.should contain(/other/) }
+        lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
       end
       
       it "should fail if archive entry does not exist" do
-        mkpath "resources"
-        check(package.entry("resources/test")) { it.should contain(/anything/) }
-        lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+        mkpath 'resources'
+        check(package.entry('resources/test')) { it.should contain(/anything/) }
+        lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
       end
     end
     
-    describe "#contain(path)" do
+    describe '#contain(path)' do
       
       it "should pass if archive path contains file" do
-        write "resources/test"
-        check(package.path("resources")) { it.should contain("test") }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        write 'resources/test'
+        check(package.path('resources')) { it.should contain('test') }
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should handle deep nesting" do
-        write "resources/test/test2.efx"
-        check(package) { it.should contain("resources/test/test2.efx") }
-        check(package.path("resources")) { it.should contain("test/test2.efx") }
-        check(package.path("resources/test")) { it.should contain("test2.efx") }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        write 'resources/test/test2.efx'
+        check(package) { it.should contain('resources/test/test2.efx') }
+        check(package.path('resources')) { it.should contain('test/test2.efx') }
+        check(package.path('resources/test')) { it.should contain('test2.efx') }
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should pass if archive path contains pattern" do
-        write "resources/with/test"
-        check(package.path("resources")) { it.should contain("**/t*st") }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        write 'resources/with/test'
+        check(package.path('resources')) { it.should contain('**/t*st') }
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should pass if archive path contains all arguments" do
-        write "resources/with/test"
-        check(package.path("resources")) { it.should contain("**/test", "**/*") }
-        lambda { project("foo").task("package").invoke }.should_not raise_error
+        write 'resources/with/test'
+        check(package.path('resources')) { it.should contain('**/test', '**/*') }
+        lambda { project('foo').task('package').invoke }.should_not raise_error
       end
       
       it "should fail unless archive path contains all arguments" do
-        write "resources/test"
-        check(package.path("resources")) { it.should contain("test", "or-not") }
-        lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+        write 'resources/test'
+        check(package.path('resources')) { it.should contain('test', 'or-not') }
+        lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
       end
       
       it "should fail if archive path is empty" do
-        mkpath "resources"
-        check(package.path("resources")) { it.should contain("test") }
-        lambda { project("foo").task("package").invoke }.should raise_error(RuntimeError, /Checks failed/)
+        mkpath 'resources'
+        check(package.path('resources')) { it.should contain('test') }
+        lambda { project('foo').task('package').invoke }.should raise_error(RuntimeError, /Checks failed/)
       end
     end
   end
@@ -504,4 +516,4 @@
     before { @archive = :tgz }
     it_should_behave_like 'all archive types'
   end
-end
\ No newline at end of file
+end