Sha256: 291572dac2543a973f9aa4e4017ce5ec1a1277afaeb594b5ddc6500c5dba358e

Contents?: true

Size: 426 Bytes

Versions: 1

Compression:

Stored size: 426 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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
coulda-0.4.2 lib/coulda.rb