Sha256: e4c7c13d0bb6985da1ee5b2a1d1a8937379097170679a962af1bf927d3f09830

Contents?: true

Size: 627 Bytes

Versions: 4

Compression:

Stored size: 627 Bytes

Contents

require 'spec_helper'

describe Artwork do
  it 'responds to root_path' do
    expect(Artwork).to respond_to(:root_path)
  end

  it 'responds to configuration methods' do
    expect(Artwork).to respond_to(:configure_for)
    expect(Artwork).to respond_to(:reset_configuration)
    expect(Artwork).to respond_to(:base_resolution)
    expect(Artwork).to respond_to(:base_resolution=)
    expect(Artwork).to respond_to(:supported_resolutions_list)
    expect(Artwork).to respond_to(:supported_resolutions_list=)
    expect(Artwork).to respond_to(:load_2x_images?)
    expect(Artwork).to respond_to(:current_resolution)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
artwork-0.7.3 spec/artwork_spec.rb
artwork-0.7.2 spec/artwork_spec.rb
artwork-0.7.1 spec/artwork_spec.rb
artwork-0.7.0 spec/artwork_spec.rb