Files
Jan Sandbrink 0b87e7543f Freeze string literals in specs
Rolling out frozen string literals further by freezing all
string literals in core specs.
2025-05-05 09:29:55 +02:00

87 lines
2.7 KiB
Ruby

# frozen_string_literal: true
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# 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.
#
# See COPYRIGHT and LICENSE files for more details.
#++
RSpec.shared_examples_for "labelled" do
it "has a label with title" do
expect(subject).to have_css "label.form--label[title]"
end
end
RSpec.shared_examples_for "not labelled" do
it "does not have a label with title" do
expect(subject).to have_no_css "label.form--label[title]"
end
end
RSpec.shared_examples_for "labelled by default" do
context "by default" do
it_behaves_like "labelled"
end
context "with no_label option" do
let(:options) { { no_label: true, label: false } }
it_behaves_like "not labelled"
end
end
RSpec.shared_examples_for "wrapped in container" do |container = "field-container"|
it { is_expected.to have_css "span.form--#{container}", count: 1 }
context "with additional class provided" do
let(:css_class) { "my-additional-class" }
let(:expected_container_count) { defined?(container_count) ? container_count : 1 }
before do
options[:container_class] = css_class
end
it "has the class" do
expect(subject).to have_css "span.#{css_class}", count: expected_container_count
end
end
end
RSpec.shared_examples_for "not wrapped in container" do |container = "field-container"|
it { is_expected.to have_no_css "span.form--#{container}" }
end
RSpec.shared_examples_for "wrapped in field-container by default" do
context "by default" do
it_behaves_like "wrapped in container"
end
context "with no_label option" do
let(:options) { { no_label: true, label: false } }
it_behaves_like "not wrapped in container"
end
end