Sha256: d81c7deb5dd259598efeb248b74422e010d6073efb0a2c645164fc9dba636b63
Contents?: true
Size: 357 Bytes
Versions: 8
Compression:
Stored size: 357 Bytes
Contents
require_relative "test_helper" class RespondsTest < ActiveSupport::TestCase test "archival class responds correctly to 'archival?'" do assert Archival.archival? assert_not Plain.archival? end test "archival object responds correctly to 'archival?'" do assert Archival.new.archival? assert_not Plain.new.archival? end end
Version data entries
8 entries across 8 versions & 2 rubygems