Sha256: 2d11e908e1cdc23b46d4c36ab66cb05f9a7d5491c1b0a6713c4d5e50adf6b9f0
Contents?: true
Size: 557 Bytes
Versions: 2
Compression:
Stored size: 557 Bytes
Contents
require "coveralls" Coveralls.wear! do add_filter "/spec/" end require "rspec" require "pry" require "fakeweb" require "onebox" require 'mocha/api' require_relative "support/html_spec_helper" RSpec.configure do |config| config.include HTMLSpecHelper end shared_examples_for "engines" do it "should behave like an engine" do expect(described_class.private_instance_methods).to include(:data, :record, :raw) end it "should have implemented a data method" do expect { described_class.new(link).send(:data) }.not_to raise_error end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
onebox-1.0.1 | spec/spec_helper.rb |
onebox-1.0.0 | spec/spec_helper.rb |