diff options
| author | José Valim <jose.valim@gmail.com> | 2011-12-07 08:00:45 -0800 |
|---|---|---|
| committer | José Valim <jose.valim@gmail.com> | 2011-12-07 08:00:45 -0800 |
| commit | 0df2ef3ef4db161524d0d5eb275e41032b60db00 (patch) | |
| tree | 24462bce4ec413cf4288f7d3b0bc108818064095 /actionpack/lib/action_controller | |
| parent | 4f107384f02b1f122330d3e589a92a8fdd078e2e (diff) | |
| parent | 18ceed201b37d91ad6598d0f8b3c010e6cc48b15 (diff) | |
| download | rails-0df2ef3ef4db161524d0d5eb275e41032b60db00.tar.gz rails-0df2ef3ef4db161524d0d5eb275e41032b60db00.tar.bz2 rails-0df2ef3ef4db161524d0d5eb275e41032b60db00.zip | |
Merge pull request #3884 from sikachu/master-fix_layout
Allow layout fallback when using `layout` method
Diffstat (limited to 'actionpack/lib/action_controller')
| -rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index 6913c1ef4a..1731388bf3 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -86,6 +86,21 @@ module ActionController end end when Hash + if expected_layout = options[:layout] + msg = build_message(message, + "expecting layout <?> but action rendered <?>", + expected_layout, @layouts.keys) + + case expected_layout + when String + assert(@layouts.keys.include?(expected_layout), msg) + when Regexp + assert(@layouts.keys.any? {|l| l =~ expected_layout }, msg) + when nil + assert(@layouts.empty?, msg) + end + end + if expected_partial = options[:partial] if expected_locals = options[:locals] actual_locals = @locals[expected_partial.to_s.sub(/^_/,'')] @@ -98,19 +113,6 @@ module ActionController "expecting ? to be rendered ? time(s) but rendered ? time(s)", expected_partial, expected_count, actual_count) assert(actual_count == expected_count.to_i, msg) - elsif options.key?(:layout) - msg = build_message(message, - "expecting layout <?> but action rendered <?>", - expected_layout, @layouts.keys) - - case layout = options[:layout] - when String - assert(@layouts.include?(expected_layout), msg) - when Regexp - assert(@layouts.any? {|l| l =~ layout }, msg) - when nil - assert(@layouts.empty?, msg) - end else msg = build_message(message, "expecting partial <?> but action rendered <?>", |
