Sha256: f7e4504f2a2a3346de4d563fd789041b5610767d89b3abfe358456d559077439

Contents?: true

Size: 1.56 KB

Versions: 3

Compression:

Stored size: 1.56 KB

Contents

require 'test/unit'
require 'test/unit/given'

class TestSimpleGiven < Test::Unit::Given::TestCase

  def test_basics
    Given {
      @x = nil
    }
    And {
      @y = nil
      @z = 10
    }
    When {
      @x = 4
    }
    And {
      @y = 10
    }
    But {
      @z # not assigned
    }
    Then {
      assert_equal 4,@x
    }
    And {
      assert_equal 10,@y
    }
    But {
      assert_equal 10,@z
    }
  end

  def test_mock_support
    Given { @x = 4 }
    When the_test_runs
    Then { }
    Given { @y = 4 }
    When { @y = 10 }
    Then { assert_equal 10,@y }
    And mocks_shouldve_been_called
  end

  def test_cannot_use_locals
    Given {
      @x = nil
    }
    When {
      x = 4
    }
    Then {
      assert_nil @x
      refute defined? x
    }
  end

  def test_can_reuse_blocks
    invocations = 0
    x_is_nil = Given {
      @x = nil
      invocations += 1
    }
    x_is_assigned_to_four = When {
      @x = 4
      invocations += 1
    }
    x_should_be_four = Then {
      assert_equal 4,@x
      invocations += 1
    }
    Given x_is_nil
    When x_is_assigned_to_four
    Then x_should_be_four
    assert_equal 6,invocations
  end

  def test_methods_that_return_blocks
    Given a_nil_x
    When {
      @x = 4
    }
    Then {
      assert_equal 4,@x
    }
  end

  def test_invert_for_block_based_asserts
    Given a_nil_x
    Then {
      assert_raises NoMethodError do
        When {
          @x + 4
        }
      end
    }
  end

  private 

  def a_nil_x
    Proc.new { @x = nil }
  end

  def refute(bool_expr)
    assert !bool_expr
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
test_unit-given-0.9.4 test/test_simple_given.rb
test_unit-given-0.9.3 test/test_simple_given.rb
test_unit-given-0.9.2 test/test_simple_given.rb