소스 검색

Update tests

Jasper van Merle 6 년 전
부모
커밋
79323d3ea8
2개의 변경된 파일1개의 추가작업 그리고 30개의 파일을 삭제
  1. 1 1
      .gitignore
  2. 0 29
      test/app_test.rb

+ 1 - 1
.gitignore

@@ -1,9 +1,9 @@
 .DS_Store
 .bundle
+log
 tmp
 public/assets
 public/fonts
 public/docs/**/*
 docs/**/*
 !docs/*.md
-log

+ 0 - 29
test/app_test.rb

@@ -43,35 +43,6 @@ class AppTest < MiniTest::Spec
       assert last_response.redirect?
       assert_equal 'https://example.org/', last_response['Location']
     end
-
-    it "sets default size" do
-      get '/'
-      assert_includes last_response.body, 'data-size="20rem"'
-    end
-
-    it "sets size from cookie" do
-      set_cookie('size=42')
-      get '/'
-      assert_includes last_response.body, 'data-size="42px"'
-    end
-
-    it "sets layout from cookie" do
-      set_cookie('layout=foo')
-      get '/'
-      assert_includes last_response.body, '<body class="foo">'
-    end
-
-    it "sets the <html> theme from cookie" do
-      get '/'
-      assert_match %r{<html [^>]*class="[^\"]*_theme-default}, last_response.body
-      refute_includes last_response.body, '_theme-dark'
-
-      set_cookie('dark=1')
-
-      get '/'
-      assert_match %r{<html [^>]*class="[^\"]*_theme-dark}, last_response.body
-      refute_includes last_response.body, '_theme-default'
-    end
   end
 
   describe "/[static-page]" do