Initial import

This commit is contained in:
2008-03-02 16:04:34 -03:00
commit 5e4951fa47
798 changed files with 59730 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Stolen straight from ActiveSupport
class Proc #:nodoc:
def bind(object)
block, time = self, Time.now
(class << object; self end).class_eval do
method_name = "__bind_#{time.to_i}_#{time.usec}"
define_method(method_name, &block)
method = instance_method(method_name)
remove_method(method_name)
method
end.bind(object)
end
end

View File

@@ -0,0 +1,165 @@
require File.join(File.dirname(__FILE__), 'proc_extensions')
module Thoughtbot
class Shoulda
VERSION = '1.0.0'
# = context and should blocks
#
# A context block groups should statements under a common setup/teardown method.
# Context blocks can be arbitrarily nested, and can do wonders for improving the maintainability
# and readability of your test code.
#
# A context block can contain setup, should, should_eventually, and teardown blocks.
#
# class UserTest << Test::Unit::TestCase
# context "a User instance" do
# setup do
# @user = User.find(:first)
# end
#
# should "return its full name"
# assert_equal 'John Doe', @user.full_name
# end
# end
# end
#
# This code will produce the method <tt>"test a User instance should return its full name"</tt>.
#
# Contexts may be nested. Nested contexts run their setup blocks from out to in before each test.
# They then run their teardown blocks from in to out after each test.
#
# class UserTest << Test::Unit::TestCase
# context "a User instance" do
# setup do
# @user = User.find(:first)
# end
#
# should "return its full name"
# assert_equal 'John Doe', @user.full_name
# end
#
# context "with a profile" do
# setup do
# @user.profile = Profile.find(:first)
# end
#
# should "return true when sent :has_profile?"
# assert @user.has_profile?
# end
# end
# end
# end
#
# This code will produce the following methods
# * <tt>"test: a User instance should return its full name."</tt>
# * <tt>"test: a User instance with a profile should return true when sent :has_profile?."</tt>
#
# <b>A context block can exist next to normal <tt>def test_the_old_way; end</tt> tests</b>,
# meaning you do not have to fully commit to the context/should syntax in a test file.
#
module ClassMethods
def self.included(other) # :nodoc:
@@context_names = []
@@setup_blocks = []
@@teardown_blocks = []
end
# Defines a test method. Can be called either inside our outside of a context.
# Optionally specify <tt>:unimplimented => true</tt> (see should_eventually).
#
# Example:
#
# class UserTest << Test::Unit::TestCase
# should "return first user on find(:first)"
# assert_equal users(:first), User.find(:first)
# end
# end
#
# Would create a test named
# 'test: should return first user on find(:first)'
#
def should(name, opts = {}, &should_block)
test_name = ["test:", @@context_names, "should", "#{name}. "].flatten.join(' ').to_sym
name_defined = eval("self.instance_methods.include?('#{test_name.to_s.gsub(/['"]/, '\$1')}')", should_block.binding)
raise ArgumentError, "'#{test_name}' is already defined" and return if name_defined
setup_blocks = @@setup_blocks.dup
teardown_blocks = @@teardown_blocks.dup
if opts[:unimplemented]
define_method test_name do |*args|
# XXX find a better way of doing this.
assert true
STDOUT.putc "X" # Tests for this model are missing.
end
else
define_method test_name do |*args|
begin
setup_blocks.each {|b| b.bind(self).call }
should_block.bind(self).call(*args)
ensure
teardown_blocks.reverse.each {|b| b.bind(self).call }
end
end
end
end
# Creates a context block with the given name.
def context(name, &context_block)
saved_setups = @@setup_blocks.dup
saved_teardowns = @@teardown_blocks.dup
saved_contexts = @@context_names.dup
@@setup_defined = false
@@context_names << name
context_block.bind(self).call
@@context_names = saved_contexts
@@setup_blocks = saved_setups
@@teardown_blocks = saved_teardowns
end
# Run before every should block in the current context.
# If a setup block appears in a nested context, it will be run after the setup blocks
# in the parent contexts.
def setup(&setup_block)
if @@setup_defined
raise RuntimeError, "Either you have two setup blocks in one context, " +
"or a setup block outside of a context. Both are equally bad."
end
@@setup_defined = true
@@setup_blocks << setup_block
end
# Run after every should block in the current context.
# If a teardown block appears in a nested context, it will be run before the teardown
# blocks in the parent contexts.
def teardown(&teardown_block)
@@teardown_blocks << teardown_block
end
# Defines a specification that is not yet implemented.
# Will be displayed as an 'X' when running tests, and failures will not be shown.
# This is equivalent to:
# should(name, {:unimplemented => true}, &block)
def should_eventually(name, &block)
should("eventually #{name}", {:unimplemented => true}, &block)
end
end
end
end
module Test # :nodoc: all
module Unit
class TestCase
class << self
include Thoughtbot::Shoulda::ClassMethods
end
end
end
end