Sha256: c918b8208dc4faac1adda8b38f34de564f451c083a01485eca1671cfa0019929

Contents?: true

Size: 729 Bytes

Versions: 7

Compression:

Stored size: 729 Bytes

Contents

require "netzke/testing/version"
require "netzke/testing/helpers"
require "active_support/core_ext"

if defined? ::Rails
  require "netzke/testing/engine"
end

module Netzke
  module Testing
    # Path to the root of your JS specs (which are part of integration tests)
    mattr_accessor :spec_root

    # JS paths that should be included in the testing template
    mattr_accessor :custom_js
    @@custom_js = []

    # Timeout (seconds) for JS spec execution
    mattr_accessor :js_timeout
    @@js_timeout = 5

    def self.rspec_init(rspec_config)
      @@spec_root = Pathname.new(caller.first).join("../..")
      rspec_config.include(Netzke::Testing::Helpers)
    end

    def self.setup
      yield self
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
netzke-testing-6.5.0.0 lib/netzke/testing.rb
netzke-testing-6.5.0.0.rc1 lib/netzke/testing.rb
netzke-testing-1.0.1.0 lib/netzke/testing.rb
netzke-testing-1.0.0.0 lib/netzke/testing.rb
netzke-testing-1.0.0.0.pre lib/netzke/testing.rb
netzke-testing-0.12.3 lib/netzke/testing.rb
netzke-testing-0.12.2 lib/netzke/testing.rb