Diff
Added: MacRuby/trunk/spec/macruby/library/dispatch/actor_spec.rb (0 => 3369)
--- MacRuby/trunk/spec/macruby/library/dispatch/actor_spec.rb (rev 0)
+++ MacRuby/trunk/spec/macruby/library/dispatch/actor_spec.rb 2010-01-29 23:40:14 UTC (rev 3369)
@@ -0,0 +1,10 @@
+require File.dirname(__FILE__) + "/../../spec_helper"
+require 'dispatch'
+
+if MACOSX_VERSION >= 10.6
+ describe "Dispatch::Actor" do
+ it "should do something" do
+ true.should == true
+ end
+ end
+end
\ No newline at end of file
Added: MacRuby/trunk/spec/macruby/library/dispatch/dispatch_spec.rb (0 => 3369)
--- MacRuby/trunk/spec/macruby/library/dispatch/dispatch_spec.rb (rev 0)
+++ MacRuby/trunk/spec/macruby/library/dispatch/dispatch_spec.rb 2010-01-29 23:40:14 UTC (rev 3369)
@@ -0,0 +1,10 @@
+require File.dirname(__FILE__) + "/../../spec_helper"
+require 'dispatch'
+
+if MACOSX_VERSION >= 10.6
+ describe "Dispatch methods" do
+ it "should do something" do
+ true.should == true
+ end
+ end
+end
\ No newline at end of file
Added: MacRuby/trunk/spec/macruby/library/dispatch/future_spec.rb (0 => 3369)
--- MacRuby/trunk/spec/macruby/library/dispatch/future_spec.rb (rev 0)
+++ MacRuby/trunk/spec/macruby/library/dispatch/future_spec.rb 2010-01-29 23:40:14 UTC (rev 3369)
@@ -0,0 +1,10 @@
+require File.dirname(__FILE__) + "/../../spec_helper"
+require 'dispatch'
+
+if MACOSX_VERSION >= 10.6
+ describe "Dispatch::Future" do
+ it "should do something" do
+ true.should == true
+ end
+ end
+end
\ No newline at end of file