spec/gon/templates_spec.rb in gon-4.1.1 vs spec/gon/templates_spec.rb in gon-5.0.0

- old
+ new

@@ -1,22 +1,18 @@ 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') + 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') + 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 @@ -26,14 +22,14 @@ controller.instance_variable_set('@objects', objects) controller.action_name = 'show' end let(:controller) { ActionController::Base.new } - let(:objects) { [1,2] } + 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') + Gon::Base.send(:get_template_path, { :controller => controller }, 'jbuilder').should eql('app/views/action_controller/base/show.json.jbuilder') end end end end