Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

README.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

hopeful

This is a project which was massively inspired by one of Gary Bernhardt's earlier screencasts on DAS

The idea is to recreate rspec (a very popular ruby testing framework from scratch to allow me (and whoever else) to use some of the more advanced ruby language features. I want to create rspec functionality with a different syntax. I'm thinking something along the lines of:

describe "when testing for true thing" do
    i_hope{ something.call }.is true
    i_hope_for{ true }.to be_true
    please_let{ something }.be true
    
end

Along with the standard rspec should syntax

More than anything, I want this to be a hub for people to practice on, so anyone is welcome to contribute, no matter what your level of skill.

If you have any questions you can email me at oguzcanhuner@gmail.com.

TODO:

  • turn this into a gem
  • create descriptive exceptions
  • implement more matchers
  • create better code structure
  • ALL THE THINGS