Sha256: 7e4ef3ed601c76d41688a8d570d04179227100bd5236a2c77ddc23a33e5ea1f7

Contents?: true

Size: 1.08 KB

Versions: 7

Compression:

Stored size: 1.08 KB

Contents

require 'minitest/autorun'
require 'ostruct'

require 'roar/representer'
require 'roar/http_verbs'
require 'roar/json/hal'

module AttributesConstructor  # TODO: remove me.
  def initialize(attrs={})
    attrs.each do |k,v|
      instance_variable_set("@#{k}", v)
    end
  end
end

# FIXME: provide a real #== for OpenStruct.
class Song < OpenStruct
  def ==(other)
    name == other.name and track == other.track
  end
end

class Album < OpenStruct
end

require "test_xml/mini_test"
require "roar/xml"

require "integration/runner"

MiniTest::Spec.class_eval do
  def link(options)
    Roar::Hypermedia::Hyperlink.new(options)
  end

  def self.representer_for(modules=[Roar::JSON, Roar::Hypermedia], &block)
    let (:rpr) do
      Module.new do
        include *modules.reverse

        module_exec(&block)
      end
    end
  end

  def self.representer!(*args, &block)
    representer_for(*args, &block)
  end

  def self.verbs(&block)
    %w(get post put delete).each(&block)
  end
end


Roar::Hypermedia::Hyperlink.class_eval do
  def ==(b)
    @attrs == b.instance_variable_get(:@attrs)
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
roar-1.0.4 test/test_helper.rb
roar-1.0.3 test/test_helper.rb
roar-1.0.2 test/test_helper.rb
roar-1.0.1 test/test_helper.rb
roar-1.0.0 test/test_helper.rb
roar-1.0.0.beta2 test/test_helper.rb
roar-1.0.0.beta1 test/test_helper.rb