OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/spec/support/matchers/be_boolean.rb

5 lines
99 B

RSpec::Matchers.define :be_boolean do
match do |value|
[true, false].include? value
end
end