Sha256: 23bda578556f53da4cb57dc30fa30090238defa9bfcc55a8edb3bd62c985cc07

Contents?: true

Size: 293 Bytes

Versions: 3

Compression:

Stored size: 293 Bytes

Contents

require "rspec"
require 'webmock/rspec'
require 'webmock'

require_relative "../lib/mirror-api/timeline.rb"

def fixture_path
  File.expand_path("../fixtures", __FILE__)
end

def fixture(file, read=false)
  file = File.new(fixture_path + '/' + file)
  return File.read(file) if read
  file
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mirror-api-0.0.4 spec/spec_helper.rb
mirror-api-0.0.3 spec/spec_helper.rb
mirror-api-0.0.2 spec/spec_helper.rb