From 5e7b07f998e9264092b8e1274f99605ead412138 Mon Sep 17 00:00:00 2001 From: Mike Linksvayer Date: Wed, 25 Oct 2017 09:34:49 -0700 Subject: [PATCH] rm no longer relevant test --- spec/license_fields_spec.rb | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 spec/license_fields_spec.rb diff --git a/spec/license_fields_spec.rb b/spec/license_fields_spec.rb deleted file mode 100644 index af0a177..0000000 --- a/spec/license_fields_spec.rb +++ /dev/null @@ -1,15 +0,0 @@ -# frozen_string_literal: true - -require 'spec_helper' - -describe 'license fillable fields' do - licenses.each do |license| - context "The #{license['title']} license" do - it 'should only contain supported fillable fields' do - matches = license['content'][0, 1000].scan(/\[([a-z]+)\]/) - extra_fields = matches.flatten - (fields.map { |f| f['name'] }) - expect(extra_fields).to be_empty - end - end - end -end