Sha256: c251fbb9de79386f92897833a334abda951f6f65965ff6eabcb1522ed9b51ad1

Contents?: true

Size: 673 Bytes

Versions: 1

Compression:

Stored size: 673 Bytes

Contents

module UrlHelper
  class << self
    def html
      File.expand_path("#{File.dirname(__FILE__)}/../html")
    end

    def files
      "file://#{html}"
    end

    def static_elements
      "#{files}/static_elements.html"
    end

    def frame_elements
      "#{files}/frames.html"
    end

    def iframe_elements
      "#{files}/iframes.html"
    end

    def nested_frame_elements
      "#{files}/nested_frames.html"
    end

    def nested_elements
      "#{files}/nested_elements.html"
    end

    def modal
      "#{files}/modal.html"
    end

    def async
      "#{files}/async.html"
    end

    def multi
      "#{files}/multi_elements.html"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
druid-ts-1.1.1 features/support/url_helper.rb