simply_bdd update

I’ve made a nice little update to my simply_bdd plugin:

You can specify a superclass for context so the class inherits from it instead:

1
2
3
context "Post Controller Creation", PostControllerTest do
  ...
end

You can also nest context calls to get automatic inheritance:

1
2
3
4
5
context "Post Controller" do
  context "Post Controller Creation" do
    ...
  end
end

Comments

Comments are closed.