mirror of
https://github.com/drapergem/draper
synced 2023-03-27 23:21:17 -04:00
2444c09bdc
This reverts commitf93542ca7c
, reversing changes made tof4dd9e0206
.
37 lines
945 B
Ruby
Executable file
37 lines
945 B
Ruby
Executable file
require 'bundler/setup'
|
|
require 'draper'
|
|
require 'rails/version'
|
|
require 'action_controller'
|
|
require 'action_controller/test_case'
|
|
|
|
RSpec.configure do |config|
|
|
config.treat_symbols_as_metadata_keys_with_true_values = true
|
|
config.expect_with(:rspec) {|c| c.syntax = :expect}
|
|
config.order = :random
|
|
end
|
|
|
|
class Model; include Draper::Decoratable; end
|
|
|
|
class Product < Model; end
|
|
class ProductDecorator < Draper::Decorator; end
|
|
class ProductsDecorator < Draper::CollectionDecorator; end
|
|
|
|
class ProductPresenter < Draper::Decorator; end
|
|
|
|
class OtherDecorator < Draper::Decorator; end
|
|
|
|
module Namespaced
|
|
class Product < Model; end
|
|
class ProductDecorator < Draper::Decorator; end
|
|
|
|
class OtherDecorator < Draper::Decorator; end
|
|
end
|
|
|
|
# After each example, revert changes made to the class
|
|
def protect_class(klass)
|
|
before { stub_const klass.name, Class.new(klass) }
|
|
end
|
|
|
|
def protect_module(mod)
|
|
before { stub_const mod.name, mod.dup }
|
|
end
|