Sha256: 382eda8cee966dbdc02ac53858c6353f51fed1d878b650270337b3e24afbd653
Contents?: true
Size: 576 Bytes
Versions: 39
Compression:
Stored size: 576 Bytes
Contents
RSpec.configure do |rspec| # This config option will be enabled by default on RSpec 4, # but for reasons of backwards compatibility, you have to # set it on RSpec 3. # # It causes the host group and examples to inherit metadata # from the shared context. rspec.shared_context_metadata_behavior = :apply_to_host_groups end RSpec.shared_context "shared stuff", :shared_context => :metadata do let :dummy_col do TableSortable::Column.new(:dummy_col) end end RSpec.configure do |rspec| rspec.include_context "shared stuff", :include_shared => true end
Version data entries
39 entries across 39 versions & 1 rubygems