[3369] MacRuby/trunk/spec/macruby/library/dispatch
Revision: 3369 http://trac.macosforge.org/projects/ruby/changeset/3369 Author: ernest.prabhakar@gmail.com Date: 2010-01-29 15:40:14 -0800 (Fri, 29 Jan 2010) Log Message: ----------- Initial lib dispatch specs Added Paths: ----------- MacRuby/trunk/spec/macruby/library/dispatch/actor_spec.rb MacRuby/trunk/spec/macruby/library/dispatch/dispatch_spec.rb MacRuby/trunk/spec/macruby/library/dispatch/future_spec.rb Added: MacRuby/trunk/spec/macruby/library/dispatch/actor_spec.rb =================================================================== --- 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 =================================================================== --- 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 =================================================================== --- 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
participants (1)
-
source_changes@macosforge.org