Sha256: fb0ec633af9fb291209e6989c8026026f14d835506b1a3c5df50861874ab688a

Contents?: true

Size: 982 Bytes

Versions: 2

Compression:

Stored size: 982 Bytes

Contents

require 'support/test_helper'

module RubySlippers::Engine
  context Article do
    setup do
      @config = RubySlippers::Engine::Config.new(:markdown => true, :author => AUTHOR, :url => URL)
      @ruby_slippers = Rack::MockRequest.new(RubySlippers::Engine::App.new(@config))

      if File.expand_path("../../", __FILE__) =~ /engine/
        RubySlippers::Engine::Paths[:articles]  = "test/fixtures/articles"
        RubySlippers::Engine::Paths[:templates] = "test/fixtures/templates"
        RubySlippers::Engine::Paths[:pages]     = "test/fixtures/pages"
      end
    end

    context "GET /index.xml (atom feed)" do
      setup { @ruby_slippers.get('/index.xml') }
      asserts("content type is set properly") { topic.content_type }.equals "application/xml"
      asserts("body should be valid xml")     { topic.body }.includes_html("feed > entry" => /.+/)
      asserts("summary shouldn't be empty")   { topic.body }.includes_html("summary" => /.{10,}/)
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruby-slippers-0.1.43 test/integration/atom_test.rb
ruby-slippers-0.1.40 test/integration/atom_test.rb