We're a place where coders share, stay up-to-date and grow their careers.
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!
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
and expectations
Which might be useful for those leaning on having less dependencies or lighter tests:
Thank you very much for your work and time!