Sha256: 33bede31d867924ea70829671463ca3301bf083c1937d8a6afecb4c2ced4158c

Contents?: true

Size: 879 Bytes

Versions: 39

Compression:

Stored size: 879 Bytes

Contents

require 'spec_helper'

describe IconsHelper, organization_workspace: :test do
  helper IconsHelper
  helper FontAwesome::Rails::IconHelper

  describe '#language_icon' do
    let(:haskell) { create(:language, name: 'Haskell') }
    let(:haskell_img_tag) { '<span class="fa da da-haskell lang-icon" alt="Haskell" />' }
    it { expect(language_icon(haskell)).to include haskell_img_tag }
  end

  describe '#status_icon' do
    let(:passed_submission) {
      create(:assignment, status: :passed, expectation_results: [], exercise: create(:indexed_exercise))
    }
    let(:failed_submission) { create(:assignment, status: :failed) }

    it { expect(status_icon(passed_submission)).to eq '<i class="fa fa-check-circle text-success status-icon"></i>' }
    it { expect(status_icon(failed_submission)).to eq '<i class="fa fa-times-circle text-danger status-icon"></i>' }
  end
end

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
mumuki-laboratory-8.1.3 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-8.1.2 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-8.1.1 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-8.1.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.12.3 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-8.0.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.12.1 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.12.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.11.1 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.11.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.10.5 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.10.4 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.10.3 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.10.2 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.10.1 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.10.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.9.2 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.9.1 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.9.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-7.7.6 spec/helpers/icons_helper_spec.rb