Sha256: 9aa2564ba8d92522f79c083110f2c296086b45a30c444f3137a848c444e62da0
Contents?: true
Size: 323 Bytes
Versions: 5
Compression:
Stored size: 323 Bytes
Contents
# frozen_string_literal: true require "test_helper" class NamespaceTest < Minitest::Test test "isolates namespace configuration" do ns = Aitch::Namespace.new ns.config.user_agent = "MyLib/1.0.0" assert_equal "MyLib/1.0.0", ns.config.user_agent assert_match(/^Aitch/, Aitch.config.user_agent) end end
Version data entries
5 entries across 5 versions & 1 rubygems