Displaying 1 result from an estimated 1 matches for "crudresourcecontrol".
2007 Mar 19
0
action_web_services error with rspec_on_rails
...ue me into what  
is going on or point me in the right direction?  Here are the two specs:
#spec one
require File.dirname(__FILE__) + ''/../spec_helper''
def one_join_model_setup
   unless defined? CommentController
     Object.const_set("CommentController", Class.new 
(CrudResourceController))
   end
   #CommentController.class_eval { join_models :post }
   controller_name ''comment''
end
context "join_model" do
   one_join_model_setup
end
## spec two
require File.dirname(__FILE__) + ''/../spec_helper''
def testing_crud_setup
   unless...