My test class:
class ReportsControllerTest < ActionController::TestCase
describe “GET #selection” do
it “gets selection csv without error” do ####### this test is not found
…
assert_equal(…)
end
end
it "can download csv review report" do ###### this test is found
assert_equal...
end
end