RSpec – Matchers

  • Post author:
  • Post category:RSpec
  • Post comments:0 Comments

If you recall our original Hello World example, it contained a line that looked like this − expect(message).to eq "Hello World!" The keyword eql is an RSpec â€œmatcher”. Here, we will introduce…

Continue ReadingRSpec – Matchers

RSpec Tutorial

  • Post author:
  • Post category:RSpec
  • Post comments:0 Comments

RSpec is a unit test framework for the Ruby programming language. RSpec is different than traditional xUnit frameworks like JUnit because RSpec is a Behavior driven development tool. What this…

Continue ReadingRSpec Tutorial