File: post_spec.rb

package info (click to toggle)
ruby-roxml 4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 800 kB
  • sloc: ruby: 4,133; xml: 1,013; makefile: 7
file content (24 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (3)
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