mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-06-04 06:12:41 -04:00
14 lines
178 B
Ruby
14 lines
178 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe "places/index" do
|
|
before do
|
|
render
|
|
end
|
|
|
|
it "shows a map" do
|
|
assert_select "div#placesmap"
|
|
end
|
|
end
|