search for: rubyphunk

Displaying 5 results from an estimated 5 matches for "rubyphunk".

2008 Jul 08
1
Strange behaviour with pending specs and implementation_backtrace
...ad the backtrace ends with my custom formatter file ''rspactor_formatter.rb''. Is this behaviour correct? Am I something missing? bye -- Andreas Wolff DynamicDudes Lightweight Ruby on Rails application development http://dynamicdudes.com hire: +49 151 58 54 78 50 home: http://rubyphunk.com
2008 Mar 11
0
RSpactor 0.0.2 : autorun your spec files
...but I''m very confident that the next version of RSpactor will work on Linux boxes, too. I would really appreciate if you give it try: "sudo gem install rspactor", to help me find bugs and make it a good working application. You can read the rest of this introduction at: http://rubyphunk.com/2008/3/11/hello-world-introducing-rspactor Project page and bug tracker: http://rubyforge.org/projects/rspactor/ bye, - andreas
2007 Sep 14
2
Testing a nested controller
Hey everyone. I really stuck on testing a nested controller. I''m trying to make a request using get and afterwards checking the response by response.should ... My routes.rb looks like this: map.resources :writers do |writers| writers.resources :notes end In my notes_controller_spec.rb def do_get writer_id = 1 note_id = 1 get note_path(writer_id, note_id) end it "should show
2007 Nov 23
6
Fresh install on Debian Etch - Mongrel immediately hangs
Hi, I just did a clean install of Ruby 1.8.5 Rubygems 0.9.0 and the Mongrel and Mongrel_Cluster gems. I used only the Debian Etch package manager, nothing compiled myself. Now, on a testapp when I do a script/server, I get the: ** Ruby version is not up-to-date; loading cgi_multipart_eof_fix warning. But it''s not serving my app. Ruby is immediately on 100% CPU load (and 0.7%
2008 Nov 21
0
Backtrace for passing specs
Hi, I''m using example.implementation_backtrace in a custom formatter to get the path of the file a passing spec belongs to. Following rspec on github I saw that implementation_backtrace is now deprecated and replaced by example.backtrace. Sadly it always returns nil for passed specs. So I had a look at the source and found that backtrace only gets assigned if line_number was set. Can