Sha256: 0fd7e5314556db4c2823791f0d928fb277ab77cfa95c7dfc17e69b5d995d0515
Contents?: true
Size: 656 Bytes
Versions: 28
Compression:
Stored size: 656 Bytes
Contents
require 'test_helper' class LinkClickTest < ActionController::IntegrationTest test "should click link by text" do visit links_path click_link "LinkByText" assert_contain("Link:LinkByText") end test "should click link by id" do visit links_path click_link "link_by_id" assert_contain("Link:link_by_id") end test "should click link by title" do visit links_path click_link "LinkByTitle" assert_contain("Link:LinkByTitle") end test "should be able to click links with non letter characters" do visit links_path click_link "Link With (parens)" assert_contain("Link:link_with_parens") end end
Version data entries
28 entries across 28 versions & 14 rubygems