Sha256: 70c3d3b191114a11bdf9f24ebce51a1ab72b33dadfb827287a939b765f10d3c0

Contents?: true

Size: 1.6 KB

Versions: 3

Compression:

Stored size: 1.6 KB

Contents

require 'teststrap'

context "An any assertion macro" do
  helper(:assert_any) do |o|
    Riot::Assertion.new("test") { o }.any
  end

  assertion_test_passes("when an array has items", "is not empty") { assert_any([1]) }
  assertion_test_fails("when an array is empty", "expected [] to have items") do
    assert_any([])
  end

  assertion_test_passes("when a hash has items", "is not empty") { assert_any({:name => 'washington'}) }
  assertion_test_fails("when a hash is empty", "expected {} to have items") do
    assert_any({})
  end
end

context "A negative, any assertion macro" do
  helper(:any) do |o|
    Riot::Assertion.new("test", true) { o }.any
  end

  asserts(":error when value is nil") do
    any(nil).run(Riot::Situation.new)[0] # No method any? on nil
  end.equals(:error)

  asserts(":pass when string is empty") do
    any("").run(Riot::Situation.new)
  end.equals([:pass, "has elements"])

  asserts(":pass when array is empty") do
    any([]).run(Riot::Situation.new)
  end.equals([:pass, "has elements"])

  asserts(":pass when hash is empty") do
    any({}).run(Riot::Situation.new)
  end.equals([:pass, "has elements"])

  asserts(":fail when string is empty") do
    any("foo").run(Riot::Situation.new)[0..1]
  end.equals([:fail, %Q{expected "foo" not to have elements}])

  asserts(":fail when array has elements") do
    any([1,2]).run(Riot::Situation.new)[0..1]
  end.equals([:fail, %Q{expected [1, 2] not to have elements}])

  asserts(":fail when hash has elements") do
    any({"bar" => "baz"}).run(Riot::Situation.new)[0..1]
  end.equals([:fail, %Q{expected {"bar"=>"baz"} not to have elements}])
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
riot-0.12.1 test/core/assertion_macros/any_test.rb
riot-0.12.0 test/core/assertion_macros/any_test.rb
riot-0.12.0.pre test/core/assertion_macros/any_test.rb