search for: pivotalrb

Displaying 2 results from an estimated 2 matches for "pivotalrb".

Did you mean: pivotal
2007 Jun 11
0
Selenium RC Fu (plus js unit)
...esting-with-selenium-and-rails [2] == Introduction Welcome to Selenium RC Fu! This plugin is designed to let you use Selenium RC to write Selenium tests in Ruby, using a simple series of Rake tasks. == Installation The current version of this plugin can be found at: http://rubyforge.org/var/svn/pivotalrb/seleniumrc_fu/trunk You may install the plugin with the following command: script/plugin install svn://rubyforge.org/var/svn/pivotalrb/seleniumrc_fu/trunk == Usage The seleniumrc_fu plugin assumes you have a test/selenium directory with a selenium_suite.rb file in it. A sample selenium_suite....
2007 Jul 28
2
specing a call to render :layout => "some_layout"
I''m trying to specify that an action should be rendered with a given layout one particular spec. What I''ve got at the moment is this. it "should render with the grabber layout" do controller.should_receive( :render ).with( :layout => "my_layout" ) do_get end This doesnt work even though this call to render is being executed. render :layout