mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-29 04:02:17 -04:00
11 lines
229 B
Ruby
11 lines
229 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe 'home/_stats.html.haml', type: "view" do
|
|
it 'has activity stats' do
|
|
render
|
|
rendered.should have_content "So far, 0 members have planted 0 crops"
|
|
end
|
|
end
|