Sha256: 54027534cfbdd7444378b9638779927ce4f10b2e04e30e6750fa4d0be1714246

Contents?: true

Size: 1.11 KB

Versions: 5

Compression:

Stored size: 1.11 KB

Contents

require 'spec_helper'

describe ActiveAdmin::ViewHelpers::DownloadFormatLinksHelper do

  describe "class methods" do
    before :all do

      begin
        # The mime type to be used in respond_to |format| style web-services in rails
        Mime::Type.register "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", :xlsx
      rescue NameError
        puts "Mime module not defined. Skipping registration of xlsx"
      end

      class Foo
        include ActiveAdmin::ViewHelpers::DownloadFormatLinksHelper
      end
    end

    it "extends the class to add a formats class method that returns the default formats." do
      expect(Foo.formats).to eq [:csv, :xml, :json]
    end

    it "does not let you alter the formats array directly" do
      Foo.formats << :xlsx
      expect(Foo.formats).to eq [:csv, :xml, :json]
    end

    it "allows us to add new formats" do
      Foo.add_format :xlsx
      expect(Foo.formats).to eq [:csv, :xml, :json, :xlsx]
    end

    it "raises an exception if you provide an unregisterd mime type extension" do
      expect{ Foo.add_format :hoge }.to raise_error
    end

  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
active_administration-0.0.3 spec/unit/view_helpers/download_format_links_helper_spec.rb
activeadministration-0.0.2 spec/unit/view_helpers/download_format_links_helper_spec.rb
active_administration-0.0.2 spec/unit/view_helpers/download_format_links_helper_spec.rb
activeadministration-0.0.1 spec/unit/view_helpers/download_format_links_helper_spec.rb
active_administration-0.0.1 spec/unit/view_helpers/download_format_links_helper_spec.rb