Sha256: 8e717f75f0764f92b772926ca0d1bd5bb2b2d18b0febe569dcb1812fec6c29d8

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

Contents

require 'spec_helper'

describe Gon do

  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-5.0.1 spec/gon/templates_spec.rb
gon-5.0.0 spec/gon/templates_spec.rb