Sha256: 8c68b61b327d6affa77eb6b58c677346c67b7226944dd6af207076820f769ffa
Contents?: true
Size: 418 Bytes
Versions: 3
Compression:
Stored size: 418 Bytes
Contents
require 'bundler' ; Bundler.require :development, :test require 'gigo' require 'minitest/autorun' require 'erb' module GIGO class TestCase < MiniTest::Spec include ERB::Util before { setup_gigo } after { teardown_gigo } private def setup_gigo @_default_gigo_encoding = GIGO.encoding end def teardown_gigo GIGO.encoding = @_default_gigo_encoding end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gigo-2.0.0 | test/test_helper.rb |
gigo-1.4.0 | test/test_helper.rb |
gigo-1.3.0 | test/test_helper.rb |