Class: RailsTemplater::TestingFramework

Inherits:
Object
  • Object
show all
Defined in:
lib/rails_templater/testing_framework.rb

Constant Summary collapse

DEFAULT =
:rspec
SUPPORTED_TYPES =
[:rspec, :test_unit]

Instance Method Summary collapse

Instance Method Details

#typeObject



7
8
9
# File 'lib/rails_templater/testing_framework.rb', line 7

def type
  @type || DEFAULT
end

#type=(value) ⇒ Object

Raises:



11
12
13
14
# File 'lib/rails_templater/testing_framework.rb', line 11

def type=(value)
  raise NotSupportedError unless SUPPORTED_TYPES.include?(value)
  @type ||= value
end