24 lines
666 B
Ruby
24 lines
666 B
Ruby
module Rspec
|
|
module Dunlop
|
|
end
|
|
end
|
|
|
|
# ACTUAL SPECS THAT CAN/SHOULD BE PERFORMED BY THE APPLICATION
|
|
require "rspec/dunlop/self_test"
|
|
|
|
# SUPPORT
|
|
require "rspec/dunlop/general_helpers"
|
|
require "rspec/dunlop/js_helpers"
|
|
require "rspec/dunlop/authentication_support"
|
|
require "rspec/dunlop/feature_helpers"
|
|
|
|
# MATCHERS
|
|
require "rspec/dunlop/matchers/be_retried_by_delayed_job"
|
|
require "rspec/dunlop/matchers/exceed_query_limit"
|
|
require "rspec/dunlop/matchers/have_log_entries"
|
|
require "rspec/dunlop/matchers/have_translation"
|
|
|
|
# SHARED EXAMPLES
|
|
require "rspec/dunlop/shared_examples/workflow_step_behaviour"
|
|
require "rspec/dunlop/shared_examples/a_dunlop_application"
|