Sha256: 3de14378e64e4cb191e4df51c636065dcd4eca8d84618797dbfe6696b9e699fa

Contents?: true

Size: 274 Bytes

Versions: 18

Compression:

Stored size: 274 Bytes

Contents

class LHS::Record

  CHILDREN = []

  def self.inherited(child)
    CHILDREN.push(child)
    super
  end

end

RSpec.configure do |config|
  config.before(:each) do
    LHS::Record::CHILDREN.each do |child|
      child.endpoints = [] if !child.name['LHS']
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
lhs-3.4.2 spec/support/cleanup_records.rb
lhs-3.4.1 spec/support/cleanup_records.rb
lhs-3.4.0 spec/support/cleanup_records.rb
lhs-3.3.6 spec/support/cleanup_records.rb
lhs-3.3.5 spec/support/cleanup_records.rb
lhs-3.3.3 spec/support/cleanup_records.rb
lhs-3.3.2 spec/support/cleanup_records.rb
lhs-3.3.1 spec/support/cleanup_records.rb
lhs-3.3.0 spec/support/cleanup_records.rb
lhs-3.2.0 spec/support/cleanup_records.rb
lhs-3.1.3 spec/support/cleanup_records.rb
lhs-3.1.1 spec/support/cleanup_records.rb
lhs-3.1.0 spec/support/cleanup_records.rb
lhs-3.0.5 spec/support/cleanup_records.rb
lhs-3.0.4 spec/support/cleanup_records.rb
lhs-3.0.3 spec/support/cleanup_records.rb
lhs-3.0.2 spec/support/cleanup_records.rb
lhs-3.0.1 spec/support/cleanup_records.rb