module PropCheck

Main module of the PropCheck library.

You probably want to look at the documentation of PropCheck::Generator and PropCheck::Generators to find out more about how to use generators.

Common usage is to call `extend PropCheck` in your (testing) modules.

This will:

  1. Add the local method `forall` which will call `PropCheck.forall`

  2. `include PropCheck::Generators`.

Constants

VERSION

Public Instance Methods

forall(*args, **kwargs, &block) click to toggle source

Runs a property.

See the README for more details.

# File lib/prop_check.rb, line 33
def forall(*args, **kwargs, &block)
  PropCheck::Property.forall(*args, **kwargs, &block)
end