/
githubmirror
/
jekyll
Обзор
Документация
Войти
/
githubmirror
/
jekyll
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/test_site_drop.rb
23 строки
470 B
Frank Taillandier
style: enable new cops (#8538)
13 янв 2021, 02:39
Не верифицирован
13 янв 2021, 02:39
8c8326e
Код
Авторство
О чём код?
# frozen_string_literal: true require "helper" class TestSiteDrop < JekyllUnitTest context "a site drop" do setup do @site = fixture_site( "collections" => ["thanksgiving"] ) @site.process @drop = @site.to_liquid.site end should "respond to `key?`" do assert_respond_to @drop, :key? end should "find a key if it's in the collection of the drop" do assert @drop.key?("thanksgiving") end end end