Sha256: 39aa656f4a38751e3f4476f454374eb505c2bcee56667ab57d7d0e05816db682

Contents?: true

Size: 443 Bytes

Versions: 1

Compression:

Stored size: 443 Bytes

Contents

module Coulda
  SyntaxError = Class.new(StandardError)
end

require 'test/unit'

gem 'pending', '>= 0.1.1'
require 'pending'

require 'coulda/feature'
require 'coulda/scenario'
require 'coulda/vendor/constantize'
require 'coulda/vendor/underscore'

module Kernel
  def Feature(name, opts = {}, &block)
    f = Feature.new(name, opts)
    f.instance_eval &block if block_given?
    f.assert_presence_of_intent
    f
  end
end

include ::Coulda

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
coulda-0.4.3 lib/coulda.rb