Files
growstuff/spec/views/places/index.html.haml_spec.rb
2020-01-10 16:50:52 +13:00

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