drugpl / bbq

Object oriented acceptance testing using personas.
MIT License
92 stars 9 forks source link

Scenarios generator #3

Closed mostlyobvious closed 13 years ago

mostlyobvious commented 13 years ago

Rails generator to provide test case stubs, i.e:

rails g bbq:feature --unit comments

results in file test/acceptance/comments_test.rb:

class CommentsFeature < Bbq::TestCase
  scenario "the truth" do
    assert true
  end
end