kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.0 KiB
65 lines
2.0 KiB
13 years ago
|
#-- copyright
|
||
12 years ago
|
# OpenProject is a project management system.
|
||
7 years ago
|
# Copyright (C) 2012-2018 the OpenProject Foundation (OPF)
|
||
13 years ago
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
12 years ago
|
# modify it under the terms of the GNU General Public License version 3.
|
||
13 years ago
|
#
|
||
11 years ago
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||
8 years ago
|
# Copyright (C) 2006-2017 Jean-Philippe Lang
|
||
11 years ago
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License
|
||
|
# as published by the Free Software Foundation; either version 2
|
||
|
# of the License, or (at your option) any later version.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program; if not, write to the Free Software
|
||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
#
|
||
7 years ago
|
# See docs/COPYRIGHT.rdoc for more details.
|
||
13 years ago
|
#++
|
||
|
|
||
6 years ago
|
require 'support/pages/messages/base'
|
||
13 years ago
|
|
||
6 years ago
|
module Pages::Messages
|
||
|
class Index < ::Pages::Messages::Base
|
||
|
attr_accessor :project
|
||
13 years ago
|
|
||
6 years ago
|
def initialize(project)
|
||
|
self.project = project
|
||
|
end
|
||
7 years ago
|
|
||
6 years ago
|
def path
|
||
|
project_boards_path(project)
|
||
|
end
|
||
|
|
||
|
def click_create_message
|
||
|
click_on 'Message'
|
||
7 years ago
|
|
||
6 years ago
|
::Pages::Messages::Create.new(project.boards.first)
|
||
|
end
|
||
|
|
||
|
def expect_listed(subject:, replies: nil, last_message: nil)
|
||
|
subject = find('table tr td.subject', text: subject)
|
||
|
|
||
|
row = subject.find(:xpath, '..')
|
||
|
|
||
|
within(row) do
|
||
|
expect(page).to have_selector('td.replies', text: replies) if replies
|
||
|
expect(page).to have_selector('td.last_message', text: last_message) if last_message
|
||
13 years ago
|
end
|
||
|
end
|
||
6 years ago
|
|
||
|
def expect_num_replies(amount)
|
||
|
expect(page).to have_selector('td.replies', text: amount)
|
||
|
end
|
||
13 years ago
|
end
|
||
11 years ago
|
end
|