{{feature_or_describe}} “CAPTURE: {{capture_name}}”, captured: true do

let(:capture) { JSON.parse(IO.read(Rails.root.join({{capture_path_str}}))) }
let(:{{model_name_plural}}) { {{model_name}}.where(id: {{record_ids}}) }

before :each do
  Softwear::Library::SpecDump.expand_spec_dump(capture)
end

{{scenario_or_specify}} {{spec_desc_str}} do
  visit edit_{{model_name_singular}}_path({{model_name_singular}})

  # TODO fill in generated spec!
  byebug
  expect(false).to eq true
end

end