spec/support/test_helpers.rb in brief-1.10.0 vs spec/support/test_helpers.rb in brief-1.10.1

- old
+ new

@@ -1,4 +1,14 @@ +class Fixnum + def greater_than?(other) + self > other + end + + def greater_than_or_equal_to?(other) + self >= other + end +end + module TestHelpers def app Brief.testcase.server end