diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-03 23:56:39 +0100 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-03 23:56:39 +0100 | 
| commit | 6ef559db90ff6369985a498ca88093cae5dbe543 (patch) | |
| tree | f484b8488befa6e36c412b29df1337302b0ff57d | |
| parent | 677d37ee4cadd7991636aa43fa3919b1a8a9c619 (diff) | |
| download | zorglub-6ef559db90ff6369985a498ca88093cae5dbe543.zip zorglub-6ef559db90ff6369985a498ca88093cae5dbe543.tar.gz | |
spec: fix Node#view spec
| -rw-r--r-- | lib/zorglub/node.rb | 2 | ||||
| -rw-r--r-- | spec/spec_helper.rb | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/lib/zorglub/node.rb b/lib/zorglub/node.rb index f2aaa72..4e09a7c 100644 --- a/lib/zorglub/node.rb +++ b/lib/zorglub/node.rb @@ -137,7 +137,7 @@ module Zorglub          end          #          def view view=nil -            @action[:view] = view unless view.nil? or view.empty? +            @action[:view] = r(view) unless view.nil? or view.empty?              return '' if @action[:view].nil?              File.join(Config.view_base_path, @action[:view])+Config.engine_ext(@action[:engine])          end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 43c8af2..4c86527 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -54,7 +54,7 @@ class Node0 < Zorglub::Node      end      def other_view          engine 'real' -        view 'do_partial' +        view r('do_partial')      end  end  # | 
