1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
require 'spec_helper'
require_relative './../../examples/posts'
describe Post do
before do
@posts = Posts.from_xml(xml_for('posts')).posts
end
it "should extract description" do
@posts.each {|post| expect(post.description).to_not be_empty }
end
it "should extract href" do
@posts.each {|post| expect(post.href).to_not be_empty }
end
it "should extract extended" do
@posts.each {|post| expect(post.extended).to_not be_empty }
end
it "should extract time" do
@posts.each {|post| expect(post.created_at).to be_an_instance_of(DateTime) }
end
end
|