I'm writing a Rails plugin/gem, that is basically some helpers (FormHelpers, FormTagHelpers), and some associated Javascript to add behavior.
I'm testing the tag helpers with RSpec. And now I am setting up Jasmine to test the Javascript behaviors.
I would like to generate the Jasmine fixtures out of the tag helper code in my plugin, instead of using static (brittle) fixtures. So when the tag code changes, the fixtures for the Jasmine tests will automatically update.
My first thought was to extend RSpec, with something like the shared behavior of "it_should_behave_like", only it would be "it_should_save_fixture_on_success". And it would be something like an after(:all) block.
Two things I would need to know... how to get at the "title" of the context (which would be the default name of the fixture", and how to determine, in the after(:all), if all the specs ran successfully.
Does that sound reasonable? Or have I missed something obvious?