Sha256: 496971bb9ed6ff520cd531d3b5fecd49cf20e90a26392a8745d1f3063c86ad88
Contents?: true
Size: 805 Bytes
Versions: 8
Compression:
Stored size: 805 Bytes
Contents
require "spec_helper" RSpec.describe Fontist::Formulas::OpenSansFonts do describe "initializing" do it "builds the data dictionary" do formula = Fontist::Formulas::OpenSansFonts.instance expect(formula.fonts.count).to eq(1) expect(formula.fonts.first[:name]).to eq("OpenSans") end end describe "installation" do context "with valid licence agreement", slow: true do it "installs the valid fonts" do name = "OpenSans" confirmation = "yes" stub_fontist_path_to_temp_path paths = Fontist::Formulas::OpenSansFonts.fetch_font( name, confirmation: confirmation ) expect(Fontist::Font.find(name)).not_to be_empty expect(paths.first).to include("fonts/#{name}-Light.ttf") end end end end
Version data entries
8 entries across 7 versions & 2 rubygems