Sha256: 7df6dc099a334fb7ecb246d0541493fe006fe11a356d175eee3925cf02c353ea
Contents?: true
Size: 399 Bytes
Versions: 62
Compression:
Stored size: 399 Bytes
Contents
require 'test_helper' module Workarea module Search class Admin class ContentPageTest < TestCase def test_search_text page = create_page(name: 'Foo', tag_list: 'one, two, three') result = ContentPage.new(page).search_text assert_includes(result, 'Foo') assert_includes(result, 'one, two, three') end end end end end
Version data entries
62 entries across 62 versions & 1 rubygems