DEV Community

Discussion on: Building Tests in Ruby: The Basics

Collapse
 
oinak profile image
Oinak

Thank you Victoria, very good introduction to testing and RSpec.

I would like to leave here a couple of links to resources on testing with the ruby included test library Minitest that supports both assertions

  def test_foo_bar
    assert_equal(foo, bar)
  end

and expectations

describe 'Foo' do
  it '#bar' do
    expect(foo).must_equal(bar)
  end
end

Which might be useful for those leaning on having less dependencies or lighter tests:

Thank you very much for your work and time!