require 'spec_helper' describe 'a tab' do include TabHelpers before(:each) do use_tab_file %Q{ Tabulous.setup do tabs do home_tab do text 'Explanation' link_path { root_path } visible_when { true } enabled_when { true } active_when { in_action('any').of_controller('home') } end galaxies_tab do text { 'foo' + 'bar' } link_path { galaxies_path } visible_when { true } enabled_when { true } active_when { in_action('any').of_controller('galaxies') } end stars_tab do text 'Stars' link_path { stars_path } visible_when { true } enabled_when { true } active_when { in_action('any').of_controller('stars') } end planets_tab do text 'Asteroids' link_path { planets_path } visible_when { true } enabled_when { true } active_when { in_action('any').of_controller('planets') } end subtabs_tab do text 'Subtabs' link_path '/subtabs/one' visible_when { true } enabled_when { true } active_when { a_subtab_is_active } end one_subtab do text 'One' link_path '/subtabs/one' visible_when { true } enabled_when { true } active_when { in_action('one').of_controller('subtabs') } end two_subtab do text { controller_name + '42' } link_path '/subtabs/two' visible_when { true } enabled_when { true } active_when { in_action('two').of_controller('subtabs') } end three_subtab do text 'Three' link_path '/subtabs/three' visible_when { true } enabled_when { true } active_when { in_action('three').of_controller('subtabs') } end end end } visit '/' end it 'can be assigned text' do visible_tabs.should include('Asteroids') visible_tabs.should_not include('Planets') end it 'can be assigned text dynamically' do visible_tabs.should include('foobar') visible_tabs.should_not include('Galaxies') end context 'that is a subtab' do before(:each) do click_link 'Subtabs' end it 'can be assigned text' do visible_subtabs.should include('One') visible_subtabs.should include('Three') end it 'can be assigned text dynamically' do visible_subtabs.should include('subtabs42') end end end