mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-31 20:26:34 -04:00
49 lines
1.5 KiB
Ruby
49 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe "harvests/index.html.haml" do
|
|
before do
|
|
controller.stub(:current_user) { nil }
|
|
@member = FactoryBot.create(:member)
|
|
@tomato = FactoryBot.create(:tomato)
|
|
@maize = FactoryBot.create(:maize)
|
|
@pp = FactoryBot.create(:plant_part)
|
|
page = 1
|
|
per_page = 2
|
|
total_entries = 2
|
|
harvests = WillPaginate::Collection.create(page, per_page, total_entries) do |pager|
|
|
pager.replace([
|
|
FactoryBot.create(:harvest,
|
|
crop: @tomato,
|
|
owner: @member),
|
|
FactoryBot.create(:harvest,
|
|
crop: @maize,
|
|
plant_part: @pp,
|
|
owner: @member)
|
|
])
|
|
end
|
|
assign(:harvests, harvests)
|
|
render
|
|
end
|
|
|
|
it "provides data links" do
|
|
render
|
|
expect(rendered).to have_content "The data on this page is available in the following formats:"
|
|
assert_select "a", href: harvests_path(format: 'csv')
|
|
assert_select "a", href: harvests_path(format: 'json')
|
|
end
|
|
|
|
it "displays member's name in title" do
|
|
assign(:owner, @member)
|
|
render
|
|
view.content_for(:title).should have_content @member.login_name
|
|
end
|
|
|
|
it "displays crop's name in title" do
|
|
assign(:crop, @tomato)
|
|
render
|
|
view.content_for(:title).should have_content @tomato.name
|
|
end
|
|
end
|