File: test.rb

package info (click to toggle)
ruby-sass 3.5.6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,668 kB
  • sloc: ruby: 32,237; sh: 22; makefile: 15
file content (9 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
module Sass
  module Util
    module Test
      def skip(msg = nil, bt = caller)
        super if defined?(super)
      end
    end
  end
end