Sha256: 668dd036112fae907e2f820bff12a45f23dec8ab1037541908491f8274dcbcdc
Contents?: true
Size: 1.28 KB
Versions: 5
Compression:
Stored size: 1.28 KB
Contents
require File.dirname(__FILE__) + "/../../spec_helper" describe Admin::SnippetsController do dataset :users, :snippets it "should be paginated" do Admin::SnippetsController.paginated.should be_true controller.paginated?.should be_true end ## I need to redo these with mock classes # # describe "with pagination settings from paginate_models" do # it "should override defaults" do # Radiant.config['admin.pagination.per_page'] = "" # Admin::SnippetsController.send :paginate_models, {:per_page => 5, :inner_window => 12} # controller.pagination_parameters.should == {:page => 1, :per_page => 5} # controller.will_paginate_options.should == {:inner_window => 12, :param_name => :p} # end # end # # describe "with configured pagination settings" do # it "should override defaults" do # Radiant.config['admin.pagination.per_page'] = 23 # controller.pagination_parameters.should == {:page => 1, :per_page => 23} # end # end # describe "without configuration" do it "should have pagination defaults" do Radiant.config['admin.pagination.per_page'] = nil controller.pagination_parameters.should == {:page => 1, :per_page => 50} controller.will_paginate_options.should == {:param_name => :p} end end end
Version data entries
5 entries across 5 versions & 1 rubygems