Sha256: f7274cf7d98dee125cd61e8a7088ed67a5138381bc42548cffcc2a722248e426

Contents?: true

Size: 882 Bytes

Versions: 53

Compression:

Stored size: 882 Bytes

Contents

require 'spec_helper'

describe IconsHelper, organization_workspace: :test do
  helper IconsHelper
  helper FontAwesome5::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="fas fa-check-circle text-success status-icon"></i>' }
    it { expect(status_icon(failed_submission)).to eq '<i class="fas fa-times-circle text-danger status-icon"></i>' }
  end
end

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
mumuki-laboratory-9.23.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.22.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.21.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.20.1 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.20.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.19.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.18.1 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.18.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.17.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.16.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.15.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.14.1 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.14.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.13.2 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.13.1 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.13.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.12.1 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.12.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.11.0 spec/helpers/icons_helper_spec.rb
mumuki-laboratory-9.10.0 spec/helpers/icons_helper_spec.rb