1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-02 01:08:03 +02:00
choosealicense.com/spec/license_wrap_spec.rb
2017-11-20 12:56:03 -08:00

16 lines
430 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe 'word wrapping' do
licenses.each do |license|
context "the #{license['slug']} license" do
it 'wraps at line length 78' do
max_line = license['content'].lines.max_by { |line| line.chomp!.length }
msg = "Longest line is #{max_line.length} characters: #{max_line}"
expect(max_line.length).to be <= 78, msg
end
end
end
end