assert_template 'diary_entry/view'
assert_select "title", :text => /Users' diaries | /, :count => 1
assert_select "div.content-heading", :count => 1 do
- assert_select "h2", :text => /#{entry.user.display_name}'s diary/, :count => 1
+ assert_select "h2", :text => /#{entry.user.display_name}'s diary/, :count => 1
end
assert_select "div#content", :count => 1 do
assert_select "div.post_heading", :text => /#{new_title}/, :count => 1
assert_template 'diary_entry/view'
assert_select "title", :text => /Users' diaries | /, :count => 1
assert_select "div.content-heading", :count => 1 do
- assert_select "h2", :text => /#{users(:normal_user).display_name}'s diary/, :count => 1
+ assert_select "h2", :text => /#{users(:normal_user).display_name}'s diary/, :count => 1
end
assert_select "div#content", :count => 1 do
assert_select "div.post_heading", :text => /#{new_title}/, :count => 1
require 'test_helper'
class RichTextTest < ActiveSupport::TestCase
- include ActionDispatch::Assertions::SelectorAssertions
+ include Rails::Dom::Testing::Assertions::SelectorAssertions
def test_html_to_html
r = RichText.new("html", "foo http://example.com/ bar")
r = RichText.new("text", "foo < bar & baz > qux")
assert_html r do
- assert_select "p", "foo < bar & baz > qux"
+ assert_select "p", "foo < bar & baz > qux"
end
end
def assert_html(richtext, &block)
html = richtext.to_html
assert html.html_safe?
- root = HTML::Document.new(richtext.to_html, false, true).root
+ root = Nokogiri::HTML::DocumentFragment.parse(html)
assert_select root, "*" do
yield block
end