Sha256: 563d2e7a406a4b765805644a85615fe0d466996dc9d2db0168c7e5d63bb443e8
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
require 'spec_helper' describe Gon do before(:each) do Gon::Request.env = {} end describe '.get_template_path' do context 'template is specified' do it 'add the extension if not included in the template name' do Gon::Base.send(:get_template_path, { :template => 'spec/test_data/sample'}, 'jbuilder').should eql('spec/test_data/sample.jbuilder') end it 'return the specified template' do Gon::Base.send(:get_template_path, { :template => 'spec/test_data/sample.jbuilder'}, 'jbuilder').should eql('spec/test_data/sample.jbuilder') end end context 'template is not specified' do before do Gon.clear controller.instance_variable_set('@objects', objects) controller.action_name = 'show' end let(:controller) { ActionController::Base.new } let(:objects) { [1,2] } context 'the action doesn as a template at a different format' do it 'return the same template as the action with rabl extension' do Gon::Base.send(:get_template_path, {:controller => controller}, 'jbuilder').should eql('app/views/action_controller/base/show.json.jbuilder') end end end end def request @request ||= double 'request', :env => {} end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gon-4.1.1 | spec/gon/templates_spec.rb |
gon-4.1.0 | spec/gon/templates_spec.rb |