mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-06-02 21:28:57 -04:00
14 lines
404 B
Ruby
14 lines
404 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe "photos/edit" do
|
|
before do
|
|
@photo = assign(:photo, stub_model(Photo,
|
|
owner_id: 1,
|
|
flickr_photo_id: 1,
|
|
thumbnail_url: "MyString",
|
|
fullsize_url: "MyString"))
|
|
end
|
|
end
|