Sha256: 739d34af45277cd7aa0a66022d0280d70185a60ae4574bcc3e3e635b73ed982e
Contents?: true
Size: 1.32 KB
Versions: 17
Compression:
Stored size: 1.32 KB
Contents
require 'test_helper' module Config class ShowTest < MiniTest::Test def setup @config = ActiveScaffold::Config::Core.new :model_stub @default_link = @config.show.link end def teardown @config.show.link = @default_link end def test_link_defaults link = @config.show.link refute link.page? refute link.popup? refute link.confirm? assert_equal "show", link.action assert_equal "Show", link.label assert link.inline? blank = {} assert_equal blank, link.html_options assert_equal :get, link.method assert_equal :member, link.type assert_equal :read, link.crud_type assert_equal :show_authorized?, link.security_method end def test_setting_link @config.show.link = ActiveScaffold::DataStructures::ActionLink.new('update', :label => 'Monkeys') refute_equal @default_link, @config.show.link end def test_label label = 'show monkeys' @config.show.label = label assert_equal label, @config.show.label I18n.backend.store_translations :en, :active_scaffold => {:view_model => 'View %{model}'} @config.show.label = :view_model assert_equal 'View Model stub', @config.show.label assert_equal 'View record', @config.show.label('record') end end end
Version data entries
17 entries across 17 versions & 1 rubygems