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
path: root/spec/lib
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/diaspora/exporter_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/lib/diaspora/exporter_spec.rb b/spec/lib/diaspora/exporter_spec.rb
index 8223bf688..e31cd27e6 100644
--- a/spec/lib/diaspora/exporter_spec.rb
+++ b/spec/lib/diaspora/exporter_spec.rb
@@ -96,7 +96,8 @@ describe Diaspora::Exporter do
it 'should include post created at time' do
doc = Nokogiri::XML::parse(posts_xml)
- xml_time = Time.zone.parse(doc.xpath('//posts/status_message/created_at').first.text)
+ target_xml = doc.xpath('//posts/status_message').detect{|status| status.to_s.include?(@status_message1.text)}
+ xml_time = Time.zone.parse(target_xml.xpath('//status_message').text)
xml_time.to_i.should == @status_message1.created_at.to_i
end
end