You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
652 B
21 lines
652 B
1 year ago
|
require "rails_helper"
|
||
|
|
||
|
RSpec.describe CollectionResourcesHelper do
|
||
|
let(:current_user) { create(:user, :data_coordinator) }
|
||
|
let(:user) { create(:user, :data_coordinator) }
|
||
|
|
||
|
describe "when displaying file metadata" do
|
||
|
context "with pages" do
|
||
|
it "returns correct metadata" do
|
||
|
expect(file_type_size_and_pages("2023_24_lettings_paper_form.pdf", number_of_pages: 8)).to eq("PDF, 286 KB, 8 pages")
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context "without pages" do
|
||
|
it "returns correct metadata" do
|
||
|
expect(file_type_size_and_pages("bulk-upload-lettings-template-2023-24.xlsx")).to eq("Microsoft Excel, 15 KB")
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|