Sha256: 53776e1c31661786f2c6109f92fee49282ab33d7efaa06b23a618526f4acb348

Contents?: true

Size: 750 Bytes

Versions: 5

Compression:

Stored size: 750 Bytes

Contents

require 'spec_helper'
require_relative './../../examples/twitter'

describe Statuses do
  describe Status do
    before do
      @statuses = Statuses.from_xml(xml_for('twitter')).statuses
    end

    it "should extract text" do
      @statuses.each {|status| status.text.should_not be_empty }
    end

    it "should extract source" do
      @statuses.each {|status| status.source.should_not be_empty }
    end

    describe User do
      before do
        @users = @statuses.map(&:user)
      end

      it "should extract name" do
        @users.each {|user| user.name.should == "John Nunemaker" }
      end

      it "should extract screen_name" do
        @users.each {|user| user.screen_name.should == "jnunemaker" }
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
roxml-3.3.1 spec/examples/twitter_spec.rb
roxml-3.3.0 spec/examples/twitter_spec.rb
roxml-3.2.2 spec/examples/twitter_spec.rb
roxml-3.2.1 spec/examples/twitter_spec.rb
roxml-3.2.0 spec/examples/twitter_spec.rb