apneadiving/waterfall

View on GitHub
lib/waterfall/predicates/when_falsy.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_relative 'when_truthy'

module Waterfall
  class WhenFalsy < WhenTruthy

    def condition?
      ! super
    end
  end
end