mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
0b87e7543f
Rolling out frozen string literals further by freezing all string literals in core specs.
8 lines
131 B
Ruby
8 lines
131 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec::Matchers.define :be_boolean do
|
|
match do |value|
|
|
[true, false].include? value
|
|
end
|
|
end
|