Sha256: 200c59f26419c4fc8c62eaacaa2ebd373d2da3f6a8876c05d200ec01d15c0977
Contents?: true
Size: 873 Bytes
Versions: 7
Compression:
Stored size: 873 Bytes
Contents
Feature: Show - Tabs Add tabs with different content to the page Background: Given a post with the title "Hello World" written by "Jane Doe" exists @javascript Scenario: Set a method to be called on the resource as the title Given a show configuration of: """ ActiveAdmin.register Post do show do tabs do tab :overview do span "tab 1" end tab 'テスト', id: :test_non_ascii do span "tab 2" end end end end """ Then I should see two tabs "Overview" and "テスト" And I should see the element "#overview span" And I should not see the element "#test_non_ascii span" Then I follow "テスト" And I should see the element "#test_non_ascii span" And I should not see the element "#overview span"
Version data entries
7 entries across 7 versions & 1 rubygems