Sha256: 65ef4c8ffdee2bfb367b55163892b1602cd65bf758abe9e636b2a6dd7f4c2847
Contents?: true
Size: 464 Bytes
Versions: 34
Compression:
Stored size: 464 Bytes
Contents
require 'test_helper' module Workarea module Admin class CommentsSystemTest < SystemTest include Admin::IntegrationTest def test_allows_commenting user = create_user(email: 'bcrouse-test@workarea.com') visit admin.user_path(user) click_link 'Comments' fill_in 'comment[body]', with: 'test comment' click_button 'create_comment' assert(page.has_content?('Success')) end end end end
Version data entries
34 entries across 34 versions & 1 rubygems