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