aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/spec_type_test.rb
blob: 9a6cb4ded28664c0d72921bfd8f2877de67753f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require "abstract_unit"
require "active_record"

class SomeRandomModel < ActiveRecord::Base; end

class SpecTypeTest < ActiveSupport::TestCase
  def assert_support actual
    assert_equal ActiveSupport::TestCase, actual
  end

  def assert_spec actual
    assert_equal MiniTest::Spec, actual
  end

  def test_spec_type_resolves_for_active_record_constants
    assert_support MiniTest::Spec.spec_type(SomeRandomModel)
  end

  def test_spec_type_doesnt_resolve_random_strings
    assert_spec MiniTest::Spec.spec_type("Unmatched String")
  end
end