lib/shiyo/or.rb in shiyo-0.1.0 vs lib/shiyo/or.rb in shiyo-0.1.1
- old
+ new
@@ -8,10 +8,9 @@
# A new instance of Shiyo::Or
#
# @param one [Shiyo::Specification] A specification object.
# @param other [Shiyo::Specification] The other specification object.
def initialize(one, other)
- super()
@one = Shiyo::Specification(one)
@other = Shiyo::Specification(other)
end
# Inspects whether the candidate satisfies any of the wrapped specifications.