lib/shiyo/and.rb in shiyo-0.1.0 vs lib/shiyo/and.rb in shiyo-0.1.1
- old
+ new
@@ -8,10 +8,9 @@
# A new instance of Shiyo::And
#
# @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 the both of the wrapped specifications.