11# frozen_string_literal: true
22
3- require " test_helper"
3+ require ' test_helper'
44
55class RubyUI ::SidebarTest < ComponentTest
66 def test_render_with_all_items
@@ -10,40 +10,41 @@ def test_render_with_all_items
1010 RubyUI . SidebarHeader do
1111 RubyUI . SidebarGroup do
1212 RubyUI . SidebarGroupContent do
13- RubyUI . SidebarInput ( id : " search" , placeholder : " Search the docs" )
13+ RubyUI . SidebarInput ( id : ' search' , placeholder : ' Search the docs' )
1414 end
1515 end
1616 end
1717 RubyUI . SidebarContent do
1818 RubyUI . SidebarGroup do
19- RubyUI . SidebarGroupLabel { " Application" }
20- RubyUI . SidebarGroupAction { " Group Action" }
19+ RubyUI . SidebarGroupLabel { ' Application' }
20+ RubyUI . SidebarGroupAction { ' Group Action' }
2121 RubyUI . SidebarGroupContent do
2222 RubyUI . SidebarMenu do
2323 RubyUI . SidebarMenuItem do
2424 RubyUI . SidebarMenuSub do
2525 RubyUI . SidebarMenuSubItem do
26- RubyUI . SidebarMenuSubButton ( as : "a" , href : "#" ) { " Sub Item 1" }
26+ RubyUI . SidebarMenuSubButton ( as : 'a' , href : '#' ) { ' Sub Item 1' }
2727 end
2828 end
2929 end
3030 RubyUI . SidebarMenuItem do
31- RubyUI . SidebarMenuButton ( as : "a" , href : "#" ) { " Settings" }
32- RubyUI . SidebarMenuAction { " Settings" }
31+ RubyUI . SidebarMenuButton ( as : 'a' , href : '#' ) { ' Settings' }
32+ RubyUI . SidebarMenuAction { ' Settings' }
3333 end
3434 RubyUI . SidebarMenuItem do
35- RubyUI . SidebarMenuButton { " Dashboard" }
36- RubyUI . SidebarMenuAction { " Dashboard" }
37- RubyUI . SidebarMenuBadge { " Dashboard Badge" }
35+ RubyUI . SidebarMenuButton { ' Dashboard' }
36+ RubyUI . SidebarMenuAction { ' Dashboard' }
37+ RubyUI . SidebarMenuBadge { ' Dashboard Badge' }
3838 end
3939 RubyUI . SidebarMenuItem do
4040 RubyUI . SidebarMenuSkeleton ( )
4141 end
4242 end
4343 end
4444 end
45+ RubyUI . SidebarSeparator ( )
4546 end
46- RubyUI . SidebarFooter { " Footer" }
47+ RubyUI . SidebarFooter { ' Footer' }
4748 RubyUI . SidebarRail ( )
4849 end
4950 RubyUI . SidebarInset do
0 commit comments