Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphael Sofaer <raphael@joindiaspora.com>2011-05-24 00:54:03 +0400
committerRaphael Sofaer <raphael@joindiaspora.com>2011-05-24 00:56:42 +0400
commitd22878f3f0141443094e315ba93fb92a7e2f1368 (patch)
tree789fd47fea3a4c429361a4b93c6fdf5afcf10644 /spec/factories.rb
parent6a88abb6dd6a63e0f47fbc0358c70c1537bf5b5b (diff)
Fix AS::Photo federation, hopefully
Diffstat (limited to 'spec/factories.rb')
-rw-r--r--spec/factories.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/factories.rb b/spec/factories.rb
index 7b6173d09..b7f7aac31 100644
--- a/spec/factories.rb
+++ b/spec/factories.rb
@@ -104,3 +104,12 @@ Factory.define(:notification) do |n|
end
end
+Factory.define(:activity_streams_photo, :class => ActivityStreams::Photo) do |p|
+ p.association(:author, :factory => :person)
+ p.image_url "http://example.com/awesome.png"
+ p.image_height 9001
+ p.image_width 4
+ p.object_url "http://example.com/awesome_things.html"
+ p.actor_url "http://notcubbi.es/cubber"
+ p.provider_display_name "not cubbies"
+end