Add an exports page that allows a user to select which reports they want

to run
This commit is contained in:
Nelson Jovel 2024-08-01 12:55:30 -07:00
parent da13bdf3e4
commit 2d42036294
16 changed files with 575 additions and 55 deletions

View file

@ -0,0 +1,15 @@
require 'rails_helper'
# Specs in this file have access to a helper object that includes
# the ExportsHelper. For example:
#
# describe ExportsHelper do
# describe "string concat" do
# it "concats two strings with spaces" do
# expect(helper.concat_strings("this","that")).to eq("this that")
# end
# end
# end
RSpec.describe ExportsHelper, type: :helper do
pending "add some examples to (or delete) #{__FILE__}"
end

View file

@ -0,0 +1,7 @@
require 'rails_helper'
RSpec.describe "Exports", type: :request do
describe "GET /index" do
pending "add some examples (or delete) #{__FILE__}"
end
end