summaryrefslogtreecommitdiff
path: root/src/specification.coffee
blob: 5c1767d0f2e60714bc9e5ea34d5de387ab34e489 (plain)
1
2
3
4
5
6
7
8
9
Module = require('./module')
OrSpecification = require('./or_specification')
NotSpecification = require('./not_specification')

module.exports = Specification =
  or: (other_specification) ->
    new OrSpecification(this, other_specification)
  not: ->
    new NotSpecification(this)