slagyr / speclj

pronounced "speckle": a TDD/BDD framework for Clojure.
MIT License
458 stars 58 forks source link

context feature #159

Open egoholic opened 8 years ago

egoholic commented 8 years ago

I think it will be good to have something like Rspec's context function to wrap examples related to particular cases. Here is example:

(describe "some feature"
  (context "when something is valid"
    (it "returns true" (...))))
RadicalZephyr commented 8 years ago

Does the context macro that exists not do what you want it to?