blob: 6eaf2fbfd3269e900ff7665ba6edd40053a9ecff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# frozen_string_literal: true
require "generators/generators_test_helper"
require "rails/generators/rails/scaffold_controller/scaffold_controller_generator"
# Mock out two ORMs
module ORMWithGenerators
module Generators
class ActiveModel
def initialize(name)
end
end
end
end
module ORMWithoutGenerators
# No generators
end
class OrmTest < Rails::Generators::TestCase
include GeneratorsTestHelper
tests Rails::Generators::ScaffoldControllerGenerator
def test_orm_class_returns_custom_generator_if_supported_custom_orm_set
g = generator ["Foo"], orm: "ORMWithGenerators"
assert_equal ORMWithGenerators::Generators::ActiveModel, g.send(:orm_class)
end
def test_orm_class_returns_rails_generator_if_unsupported_custom_orm_set
g = generator ["Foo"], orm: "ORMWithoutGenerators"
assert_equal Rails::Generators::ActiveModel, g.send(:orm_class)
end
def test_orm_instance_returns_orm_class_instance_with_name
g = generator ["Foo"]
orm_instance = g.send(:orm_instance)
assert g.send(:orm_class) === orm_instance
assert_equal "foo", orm_instance.name
end
end
|