Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 1648

Show
Ignore:
Timestamp:
07/03/05 12:48:24 (3 years ago)
Author:
david
Message:

Fixed assert_template nil will be true when no template was rendered #1565 [maceywj@telus.net]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/CHANGELOG

    r1646 r1648  
    11*SVN* 
     2 
     3* Fixed assert_template nil will be true when no template was rendered #1565 [maceywj@telus.net] 
    24 
    35* Added :prompt option to FormOptions#select (and the users of it, like FormOptions#select_country etc) to create "Please select" style descriptors #1181 [Michael Schuerig] 
  • trunk/actionpack/lib/action_controller/assertions.rb

    r1609 r1648  
    9494        assert_block(msg) do 
    9595          if expected.nil? 
    96             @response.rendered_with_file? 
     96            !@response.rendered_with_file? 
    9797          else 
    9898            expected == rendered